diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-06-30 20:43:05 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-06-30 20:43:05 +0300 |
| commit | ac127db9194616298bb80134a2bda6e0858a0e15 (patch) | |
| tree | b6f550f0da007314ac2bdce31320b38a158af820 /coredata.py | |
| parent | 6f76c45a542d4515c7b850a9878fc8030cd273de (diff) | |
| download | meson-ac127db9194616298bb80134a2bda6e0858a0e15.tar.gz | |
Get builtin options by correct name in subprojects.
Diffstat (limited to 'coredata.py')
| -rw-r--r-- | coredata.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/coredata.py b/coredata.py index 4590550ab..e3d486801 100644 --- a/coredata.py +++ b/coredata.py @@ -16,6 +16,20 @@ import pickle, os, uuid version = '0.25.0-research' +builtin_options = {'buildtype': True, + 'strip': True, + 'coverage': True, + 'pch': True, + 'unity': True, + 'prefix': True, + 'libdir' : True, + 'bindir' : True, + 'includedir' : True, + 'datadir' : True, + 'mandir' : True, + 'localedir' : True, + 'werror' : True, + } # This class contains all data that must persist over multiple # invocations of Meson. It is roughly the same thing as # cmakecache. |
