diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-12-11 17:50:38 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 12:19:30 +0100 |
commit | 7691b0460c53478cfc2e11fca156557add6579bf (patch) | |
tree | 2831b2421bc8bd3e40fea62232a8a415a96f638e /mesonbuild/mintro.py | |
parent | b9c4913cf032144eed0cb6308aaff4e77a825f08 (diff) | |
download | meson-7691b0460c53478cfc2e11fca156557add6579bf.zip meson-7691b0460c53478cfc2e11fca156557add6579bf.tar.gz meson-7691b0460c53478cfc2e11fca156557add6579bf.tar.bz2 |
Ninja backend target introspection
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index e10b95b..9372ed8 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -272,7 +272,7 @@ def list_target_files(target_name, targets): raise RuntimeError('Target with the ID "{}" could not be found'.format(target_name)) for i in tgt['sources']: - result += i['source_files'] + result += i['sources'] + i['generated_sources'] return ('target_files', result) |