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