diff options
Diffstat (limited to 'Tests/Complex/Library')
-rw-r--r-- | Tests/Complex/Library/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/Complex/Library/file2.cxx | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Complex/Library/CMakeLists.txt b/Tests/Complex/Library/CMakeLists.txt index 488f4e7..7c58fad 100644 --- a/Tests/Complex/Library/CMakeLists.txt +++ b/Tests/Complex/Library/CMakeLists.txt @@ -1,3 +1,5 @@ +REMOVE_DEFINITIONS(-DCMAKE_IS_REALLY_FUN) + # # Small utility used to create file # UTILITY_SOURCE is used for coverage and for getting the exact name diff --git a/Tests/Complex/Library/file2.cxx b/Tests/Complex/Library/file2.cxx index b52e547..863fcaa 100644 --- a/Tests/Complex/Library/file2.cxx +++ b/Tests/Complex/Library/file2.cxx @@ -1,5 +1,9 @@ #include <string.h> +#ifdef CMAKE_IS_REALLY_FUN +This is a problem. Looks like REMOVE_DEFINITION does not work +#endif + int file2() { return 1; |