aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/115 subproject project arguments/exe.cpp
blob: 9cfaec4a2b6ad1e6ae2096298374675e16a94adb (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
28
#ifdef PROJECT_OPTION
#error
#endif

#ifdef PROJECT_OPTION_1
#error
#endif

#ifdef GLOBAL_ARGUMENT
#error
#endif

#ifdef SUBPROJECT_OPTION
#error
#endif

#ifndef PROJECT_OPTION_CPP
#error
#endif

#ifndef PROJECT_OPTION_C_CPP
#error
#endif

int main(void) {
    return 0;
}