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.
 
 
 
 
 
 

14 lines
484 B

project('project options tester', 'c', 'cpp',
version : '2.3.4',
license : 'mylicense')
add_global_arguments('-DGLOBAL_ARGUMENT', language: 'c')
add_project_arguments('-DPROJECT_OPTION', language: 'c')
add_project_arguments('-DPROJECT_OPTION_1', language: 'c')
add_project_arguments('-DPROJECT_OPTION_CPP', language: 'cpp')
sub = subproject('subexe', version : '1.0.0')
e = executable('exe', 'exe.c')
e = executable('execpp', 'exe.cpp')
test('exetest', e)
test('execpptest', e)