summaryrefslogtreecommitdiff
path: root/docs/markdown/Build-options.md
AgeCommit message (Collapse)Author
2025-04-07Fix documentation typosEmil Berg
2024-08-12docs: fix a few grammar and formatting issuesDmitry V. Levin
2024-04-29fix typos and grammars in Build-options.mdNhalrath
2023-04-11Change "can not" to "cannot" throughout projectHiPhish
The word "cannot" expresses inability to do something whereas "can not" expresses the ability to refrain from doing something.
2023-03-28docs: replace most uses of `meson_options.txt` with `meson.options`Dylan Baker
I've left the old release notes in place, but updated everything else to use `meson.options`
2022-12-14docs: update description of supported functions for feature optionsEli Schwartz
We support these for a couple more things now.
2022-06-27docs: linkify some function referencesEli Schwartz
2022-04-21Allow deprecating an option for a new oneXavier Claessens
2021-10-09optinterpreter: Add deprecated kwargXavier Claessens
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-03docs: Fix broken linksDaniel Mensinger
2021-01-30Rewrap long text lines in docs. [skip ci]Jussi Pakkanen
2020-05-26opts: added docsDaniel Mensinger
2020-02-19docs: Improve visibility for `.enabled()` etc., add example [skip ci]Niklas Hambüchen
2019-11-06Fix typos found by codespellWolfgang Stöggl
- Typos were found by codespell v1.16.0
2018-11-30Add link to built-in options page [skip ci]Lzu Tao
2018-11-30Add meson version required to use option type (#4562) [skip ci]lzutao
2018-07-31[skip ci] Typo fix in Build-options.md: "option" -> "description"Tanu Kaskinen
2018-06-29Options: treat array option -Dopt= and -Dopt=[] as equivalentDylan Baker
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-18Add UserFeatureOption typeXavier Claessens
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-10Visual Studio: Implement startup projectNiklas Claesson
2018-02-16Document how to set options in subprojectsMartin Ejdestig
2018-02-12Clarify that int options are available since 0.45.0.Jussi Pakkanen
2018-02-08User options can "yield to" a user option of the same name in superproject. ↵Jussi Pakkanen
Closes ##2853.
2018-02-07Expose integer options to build option files.Jussi Pakkanen
2017-12-03Minor fixes.Jussi Pakkanen
2017-12-03String arguments can permit arbitrary string valuesJussi Pakkanen
by leaving out the choices keyword.
2017-11-29Add new array type optionDylan Baker
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-22Replaced references to 'mesonconf'Johan Bjäreholt
mesonconf is deprecated and all references of it has been replaced with 'meson configure'
2017-08-26Rewrapped more files.Jussi Pakkanen
2017-05-03docs: add a short description for all top pages in the ManualPeter Hutterer
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier
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.