blob: 24fd937bc373a98e631579d1ad38962d7542268e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
project('reserved target names', 'c')
# FIXME: Setting this causes it to leak to all other tests
#default_options : ['b_coverage=true']
subdir('all')
subdir('benchmark')
subdir('clean')
subdir('clean-ctlist')
subdir('clean-gcda')
subdir('clean-gcno')
subdir('coverage')
subdir('coverage-html')
subdir('coverage-text')
subdir('coverage-xml')
subdir('dist')
subdir('distcheck')
subdir('install')
# We don't have a 'PHONY' directory because Windows and OSX
# choke horribly when there are two entries with the same
# name but different case.
subdir('phony')
subdir('reconfigure')
subdir('scan-build')
subdir('test')
subdir('uninstall')
subdir('runtarget')
py3 = import('python3').find_python()
custom_target('ctlist-test', output : 'out.txt',
command : [py3, '-c', 'print("")'],
capture : true,
build_by_default : true)
|