aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mintro.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2018-12-11 17:50:38 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-01-06 12:19:30 +0100
commit7691b0460c53478cfc2e11fca156557add6579bf (patch)
tree2831b2421bc8bd3e40fea62232a8a415a96f638e /mesonbuild/mintro.py
parentb9c4913cf032144eed0cb6308aaff4e77a825f08 (diff)
downloadmeson-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.py2
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)