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.
12 lines
294 B
12 lines
294 B
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_directories : include_directories('.')) |
|
test('10test', exe)
|
|
|