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.
9 lines
289 B
9 lines
289 B
9 years ago
|
project('add language', 'c')
|
||
|
|
||
|
test('C', executable('cprog', 'prog.c'))
|
||
|
|
||
9 years ago
|
assert(add_languages('cpp'), 'Add_languages returned false on success')
|
||
|
assert(not add_languages('klingon', required : false), 'Add_languages returned true on failure.')
|
||
9 years ago
|
|
||
|
test('C++', executable('cppprog', 'prog.cc'))
|