Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-04-21 | Allow deprecating an option for a new one | Xavier Claessens | 1 | -0/+15 | |
2021-10-09 | optinterpreter: Add deprecated kwarg | Xavier Claessens | 1 | -0/+26 | |
It can be either: - boolean: the option is completely deprecated. - list: some choices are deprecated. - dict: some choices are deprecated and replaced by another. Fixes: #7444 | |||||
2021-10-03 | docs: Fix broken links | Daniel Mensinger | 1 | -6/+5 | |
2021-01-30 | Rewrap long text lines in docs. [skip ci] | Jussi Pakkanen | 1 | -23/+26 | |
2020-05-26 | opts: added docs | Daniel Mensinger | 1 | -0/+3 | |
2020-02-19 | docs: Improve visibility for `.enabled()` etc., add example [skip ci] | Niklas Hambüchen | 1 | -3/+18 | |
2019-11-06 | Fix typos found by codespell | Wolfgang Stöggl | 1 | -1/+1 | |
- Typos were found by codespell v1.16.0 | |||||
2018-11-30 | Add link to built-in options page [skip ci] | Lzu Tao | 1 | -1/+5 | |
2018-11-30 | Add meson version required to use option type (#4562) [skip ci] | lzutao | 1 | -2/+2 | |
2018-07-31 | [skip ci] Typo fix in Build-options.md: "option" -> "description" | Tanu Kaskinen | 1 | -1/+1 | |
2018-06-29 | Options: treat array option -Dopt= and -Dopt=[] as equivalent | Dylan Baker | 1 | -0/+3 | |
Currently the former will be parsed as [''], while the latter is parsed as [] in python. This makes for some obnoxious special handling depending on what the user passes. This is even more obnoxious since for string type arguments this doesn't require special handling. | |||||
2018-06-18 | Add UserFeatureOption type | Xavier Claessens | 1 | -0/+36 | |
This is a special type of option to be passed to most 'required' keyword arguments. It adds a 3rd state to the traditional boolean value to cause those methods to always return not-found even if the dependency could be found. Since integrators doesn't want enabled features to be a surprise there is a global option "auto_features" to enable or disable all automatic features. | |||||
2018-06-10 | Visual Studio: Implement startup project | Niklas Claesson | 1 | -1/+29 | |
2018-02-16 | Document how to set options in subprojects | Martin Ejdestig | 1 | -0/+7 | |
2018-02-12 | Clarify that int options are available since 0.45.0. | Jussi Pakkanen | 1 | -3/+5 | |
2018-02-08 | User options can "yield to" a user option of the same name in superproject. ↵ | Jussi Pakkanen | 1 | -0/+18 | |
Closes ##2853. | |||||
2018-02-07 | Expose integer options to build option files. | Jussi Pakkanen | 1 | -0/+7 | |
2017-12-03 | Minor fixes. | Jussi Pakkanen | 1 | -1/+1 | |
2017-12-03 | String arguments can permit arbitrary string values | Jussi Pakkanen | 1 | -15/+42 | |
by leaving out the choices keyword. | |||||
2017-11-29 | Add new array type option | Dylan Baker | 1 | -9/+28 | |
This exposes the already existing UserStringArrayOption class through the meson_options.txt. The intention is to provide a way for projects to take list/array type arguments and validate that all of the elements in that array are valid without using complex looping constructrs. | |||||
2017-09-22 | Replaced references to 'mesonconf' | Johan Bjäreholt | 1 | -4/+9 | |
mesonconf is deprecated and all references of it has been replaced with 'meson configure' | |||||
2017-08-26 | Rewrapped more files. | Jussi Pakkanen | 1 | -4/+21 | |
2017-05-03 | docs: add a short description for all top pages in the Manual | Peter Hutterer | 1 | -0/+4 | |
2017-04-26 | docs: Import the website and wiki and build with hotdoc | Thibault Saunier | 1 | -0/+31 | |
This allows us to more easily have the documentation in sync with the source code as people will have to document new features etc right at the time where they implement it. |