summaryrefslogtreecommitdiff
path: root/mesonbuild/optinterpreter.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Use context manager for file I/O.Elliott Sales de Andrade2016-08-271-1/+2
| | | | | There are a few cases where a context manager cannot be used, such as the logger.
* Flatten isinstance calls. (#715)Elliott Sales de Andrade2016-08-271-5/+2
| | | | That is, isinstance(x, y) or isinstance(x, z) can be flattened with a tuple to isinstance(x, (y, z)).
* Implement D supportMatthias Klumpp2016-08-191-0/+1
| | | | | | | | | | | This patch adds support for the D programming language[1] to Meson. The following compilers are supported: * LDC * GDC * DMD [1]: http://dlang.org/
* coredata: Centralize builtin option descriptions and definitions.Hemmo Nieminen2016-04-041-1/+1
|
* Move MesonException from coredata to mesonlib.Hemmo Nieminen2016-04-011-2/+3
|
* Merge branch 'base_options'.Jussi Pakkanen2016-03-201-3/+6
|\
| * Preserve b_ prefix for base option names.Jussi Pakkanen2016-03-201-3/+6
| |
* | Open Meson and option files explicitly as utf-8. Closes #467.Jussi Pakkanen2016-03-201-1/+1
|/
* Renamed meson package to mesonbuild so that we can have a script named meson ↵Jussi Pakkanen2016-01-161-0/+148
in the same toplevel dir.