diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-25 21:34:02 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-26 21:57:29 +0200 |
commit | a32e3023f8a43cf80c817810c71284f7bde6eeb4 (patch) | |
tree | f3ea1f36db177b8659cad7c44461a50f167f9a41 | |
parent | 6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493 (diff) | |
download | meson-a32e3023f8a43cf80c817810c71284f7bde6eeb4.zip meson-a32e3023f8a43cf80c817810c71284f7bde6eeb4.tar.gz meson-a32e3023f8a43cf80c817810c71284f7bde6eeb4.tar.bz2 |
Add build_by_default to list of kwargs know by CustomTarget.
-rw-r--r-- | mesonbuild/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index dc072a5..a9f08c3 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1254,6 +1254,7 @@ class CustomTarget(Target): 'depends': True, 'depend_files': True, 'depfile': True, + 'build_by_default': True, } def __init__(self, name, subdir, kwargs, absolute_paths=False): |