mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-25 01:28:50 -05:00
3df36b5954
This reverts commit 0b92602b81.
Conflicts:
Source/cmGeneratorExpressionEvaluator.cxx
Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt
Tests/CMakeCommands/target_include_directories/CMakeLists.txt
28 lines
489 B
C++
28 lines
489 B
C++
|
|
#include "common.h"
|
|
#include "publicinclude.h"
|
|
#include "interfaceinclude.h"
|
|
#include "relative_dir.h"
|
|
|
|
#ifdef PRIVATEINCLUDE_DEFINE
|
|
#error Unexpected PRIVATEINCLUDE_DEFINE
|
|
#endif
|
|
|
|
#ifndef PUBLICINCLUDE_DEFINE
|
|
#error Expected PUBLICINCLUDE_DEFINE
|
|
#endif
|
|
|
|
#ifndef INTERFACEINCLUDE_DEFINE
|
|
#error Expected INTERFACEINCLUDE_DEFINE
|
|
#endif
|
|
|
|
#ifndef CURE_DEFINE
|
|
#error Expected CURE_DEFINE
|
|
#endif
|
|
|
|
#ifndef RELATIVE_DIR_DEFINE
|
|
#error Expected RELATIVE_DIR_DEFINE
|
|
#endif
|
|
|
|
int main() { return 0; }
|