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.
18 lines
558 B
18 lines
558 B
8 years ago
|
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_CPP', language: 'cpp')
|
||
8 years ago
|
add_project_arguments('-DPROJECT_OPTION_C_CPP', language: ['c', 'cpp'])
|
||
8 years ago
|
|
||
|
sub = subproject('subexe', version : '1.0.0')
|
||
8 years ago
|
|
||
|
add_project_arguments('-DPROJECT_OPTION_1', language: 'c')
|
||
|
|
||
8 years ago
|
e = executable('exe', 'exe.c')
|
||
|
e = executable('execpp', 'exe.cpp')
|
||
|
test('exetest', e)
|
||
|
test('execpptest', e)
|