diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-10-30 23:41:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-11-24 20:54:41 (GMT) |
commit | 4cf5179c77237f3eb56f85eddebc43895691694c (patch) | |
tree | 4ab200eaf6c05ccd098eeb0f1101c0c6e2745c89 /Tests/Module/WriteCompilerDetectionHeader/main.cpp | |
parent | 2ed0088b2abc591bb5ba6b4a13ee9997231883eb (diff) | |
download | CMake-4cf5179c77237f3eb56f85eddebc43895691694c.zip CMake-4cf5179c77237f3eb56f85eddebc43895691694c.tar.gz CMake-4cf5179c77237f3eb56f85eddebc43895691694c.tar.bz2 |
WCDH: Make it possible to generate multiple files.
Extend the write_compiler_detection_header interface to allow
specifying a location for supplementary files, and getting the
list of resulting files as a variable.
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() { |