diff options
author | Brad King <brad.king@kitware.com> | 2017-05-26 17:25:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-05-26 17:26:39 (GMT) |
commit | 783fbb77e7b48d5816f16773f977250453cd43ee (patch) | |
tree | 910290e76fcafa9418b8fbb4f25a8a3b579f127b | |
parent | 73038a85ea5d290bffc40a28ca8fa5a8d74c472c (diff) | |
download | CMake-783fbb77e7b48d5816f16773f977250453cd43ee.zip CMake-783fbb77e7b48d5816f16773f977250453cd43ee.tar.gz CMake-783fbb77e7b48d5816f16773f977250453cd43ee.tar.bz2 |
Tests: Compile entire Plugin test with the same language standard
Set `CMAKE_CXX_STANDARD` early so that both KWSys and our test code
build with the same language standard. This is important on compilers
that have incompatible standard libraries.
-rw-r--r-- | Tests/Plugin/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Plugin/CMakeLists.txt b/Tests/Plugin/CMakeLists.txt index f52b479..9e2b4ab 100644 --- a/Tests/Plugin/CMakeLists.txt +++ b/Tests/Plugin/CMakeLists.txt @@ -2,6 +2,9 @@ cmake_minimum_required (VERSION 2.6) cmake_policy(SET CMP0054 NEW) project(Plugin) +# We need proper C++98 support from the compiler +set(CMAKE_CXX_STANDARD 98) + # Test per-target output directory properties. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${Plugin_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${Plugin_BINARY_DIR}/lib/plugin) @@ -25,9 +28,6 @@ include_directories( ${Plugin_SOURCE_DIR}/include ) -# We need proper C++98 support from the compiler -set(CMAKE_CXX_STANDARD 98) - # Those versions of the HP compiler that need a flag to get proper C++98 # template support also need a flag to use the newer C++ library. if (CMAKE_CXX_COMPILER_ID STREQUAL HP AND |