diff options
Diffstat (limited to 'meson/test cases/common/115 subproject project arguments/subprojects')
-rw-r--r-- | meson/test cases/common/115 subproject project arguments/subprojects/subexe/meson.build | 13 | ||||
-rw-r--r-- | meson/test cases/common/115 subproject project arguments/subprojects/subexe/subexe.c | 27 |
2 files changed, 40 insertions, 0 deletions
diff --git a/meson/test cases/common/115 subproject project arguments/subprojects/subexe/meson.build b/meson/test cases/common/115 subproject project arguments/subprojects/subexe/meson.build new file mode 100644 index 000000000..ef141dc0a --- /dev/null +++ b/meson/test cases/common/115 subproject project arguments/subprojects/subexe/meson.build @@ -0,0 +1,13 @@ +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) diff --git a/meson/test cases/common/115 subproject project arguments/subprojects/subexe/subexe.c b/meson/test cases/common/115 subproject project arguments/subprojects/subexe/subexe.c new file mode 100644 index 000000000..bd5316db9 --- /dev/null +++ b/meson/test cases/common/115 subproject project arguments/subprojects/subexe/subexe.c @@ -0,0 +1,27 @@ +#ifdef PROJECT_OPTION +#error +#endif + +#ifdef PROJECT_OPTION_1 +#error +#endif + +#ifdef PROJECT_OPTION_C_CPP +#error +#endif + +#ifndef GLOBAL_ARGUMENT +#error +#endif + +#ifndef SUBPROJECT_OPTION +#error +#endif + +#ifdef OPTION_CPP +#error +#endif + +int main(void) { + return 0; +} |