diff options
author | Brad King <brad.king@kitware.com> | 2014-11-26 15:37:49 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-11-26 15:37:49 (GMT) |
commit | 6b939536154421b5e18bc8e908b1bd5f7212a536 (patch) | |
tree | 3894b072bfe1aeb883cb8711876dd3390d1f0aac /Tests/Module/WriteCompilerDetectionHeader/main.cpp | |
parent | 5a611495c220af559e93aa29d5bfc786ff40d440 (diff) | |
parent | 4cf5179c77237f3eb56f85eddebc43895691694c (diff) | |
download | CMake-6b939536154421b5e18bc8e908b1bd5f7212a536.zip CMake-6b939536154421b5e18bc8e908b1bd5f7212a536.tar.gz CMake-6b939536154421b5e18bc8e908b1bd5f7212a536.tar.bz2 |
Merge topic 'WCDH-multi-file'
4cf5179c WCDH: Make it possible to generate multiple files.
Diffstat (limited to 'Tests/Module/WriteCompilerDetectionHeader/main.cpp')
-rw-r--r-- | Tests/Module/WriteCompilerDetectionHeader/main.cpp | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/Tests/Module/WriteCompilerDetectionHeader/main.cpp b/Tests/Module/WriteCompilerDetectionHeader/main.cpp index b807ad5..82b2191 100644 --- a/Tests/Module/WriteCompilerDetectionHeader/main.cpp +++ b/Tests/Module/WriteCompilerDetectionHeader/main.cpp @@ -1,29 +1,8 @@ #include "test_compiler_detection.h" -#define JOIN_IMPL(A, B) A ## B -#define JOIN(A, B) JOIN_IMPL(A, B) -#define CHECK(FEATURE) (JOIN(TEST_COMPILER_, FEATURE) == JOIN(EXPECTED_COMPILER_, FEATURE)) - -#if !CHECK(CXX_DELEGATING_CONSTRUCTORS) -#error cxx_delegating_constructors expected availability did not match. -#endif - -#if !CHECK(CXX_VARIADIC_TEMPLATES) -#error cxx_variadic_templates expected availability did not match. -#endif - -#if !CHECK(VERSION_MAJOR) -#error Compiler major version did not match. -#endif - -#if !CHECK(VERSION_MINOR) -#error Compiler minor version did not match. -#endif - -#if !CHECK(VERSION_PATCH) -#error Compiler patch version did not match. -#endif +#define PREFIX TEST +#include "compile_tests.h" int main() { |