aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/122 subproject project arguments/subprojects/subexe/subexe.c
blob: 6ebd752a3495f6701bdac1bb101c8531add2dbae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifdef PROJECT_OPTION
#error
#endif

#ifdef PROJECT_OPTION_1
#error
#endif

#ifndef GLOBAL_ARGUMENT
#error
#endif

#ifndef SUBPROJECT_OPTION
#error
#endif

#ifdef OPTION_CPP
#error
#endif

int main(int argc, char **argv) {
    return 0;
}