1project('test-reconfigure', 'c')
2
3message('opt1 ' + get_option('opt1'))
4message('opt2 ' + get_option('opt2'))
5message('opt3 ' + get_option('opt3'))
6message('opt4 ' + get_option('opt4'))
7
8exe = executable('test1', 'main.c')
9test('test1', exe)
10
11sub1 = subproject('sub1')
12