The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
287 B
13 lines
287 B
12 years ago
|
project('set10test', 'c')
|
||
|
|
||
|
conf = configuration_data()
|
||
|
conf.set10('ONE', true)
|
||
|
conf.set10('ZERO', false)
|
||
|
|
||
|
configure_file(input : 'config.h.in',
|
||
|
output : 'config.h',
|
||
|
configuration : conf)
|
||
|
|
||
|
exe = executable('prog', 'prog.c', include_dirs : include_directories('.'))
|
||
|
test('10test', exe)
|