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
396 B
13 lines
396 B
project('subproject', 'c', |
|
version : '1.0.0', |
|
license : ['sublicense1', 'sublicense2']) |
|
|
|
if not meson.is_subproject() |
|
error('Claimed to be master project even though we are a subproject.') |
|
endif |
|
|
|
assert(meson.project_name() == 'subproject', 'Incorrect subproject name') |
|
|
|
add_project_arguments('-DSUBPROJECT_OPTION', language: 'c') |
|
e = executable('subexe', 'subexe.c') |
|
test('subexetest', e)
|
|
|