summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_compile_definitions/consumer.cpp
blob: a3911141622010617064e9de357460cf31797594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifdef MY_PRIVATE_DEFINE
#error Unexpected MY_PRIVATE_DEFINE
#endif

#ifndef MY_PUBLIC_DEFINE
#error Expected MY_PUBLIC_DEFINE
#endif

#ifndef MY_INTERFACE_DEFINE
#error Expected MY_INTERFACE_DEFINE
#endif

#ifndef DASH_D_DEFINE
#error Expected DASH_D_DEFINE
#endif

int main() { return 0; }