aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/115 subproject project arguments/subprojects/subexe/subexe.c
blob: bd5316db9da9e45e64ee87873c651ad85469aa88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}