3df36b5954
This reverts commit 0b92602b816e2584db3781b120a1e5200da72ada. Conflicts: Source/cmGeneratorExpressionEvaluator.cxx Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt Tests/CMakeCommands/target_include_directories/CMakeLists.txt
27 lines
438 B
C++
27 lines
438 B
C++
|
|
#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
|
|
|
|
#ifdef SHOULD_NOT_BE_DEFINED
|
|
#error Unexpected SHOULD_NOT_BE_DEFINED
|
|
#endif
|
|
|
|
#ifndef SHOULD_BE_DEFINED
|
|
#error Expected SHOULD_BE_DEFINED
|
|
#endif
|
|
|
|
#ifndef DASH_D_DEFINE
|
|
#error Expected DASH_D_DEFINE
|
|
#endif
|
|
|
|
int main() { return 0; }
|