summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-16 15:22:01 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-17 14:20:50 (GMT)
commit447fbb3facd09a29a2a402df258acf01cbf0bc34 (patch)
treef0a98cea28393e1e60728cc90613574de039b68c /Tests/CompileFeatures
parent597bb72ed7a74bf9b70dec8726113050e731d667 (diff)
downloadCMake-447fbb3facd09a29a2a402df258acf01cbf0bc34.zip
CMake-447fbb3facd09a29a2a402df258acf01cbf0bc34.tar.gz
CMake-447fbb3facd09a29a2a402df258acf01cbf0bc34.tar.bz2
Tests: Execute compile features tests unconditionally.
Conditionally create a dummy test if there are no known features.
Diffstat (limited to 'Tests/CompileFeatures')
-rw-r--r--Tests/CompileFeatures/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/CMakeLists.txt b/Tests/CompileFeatures/CMakeLists.txt
index bceb6bb..ce5004b 100644
--- a/Tests/CompileFeatures/CMakeLists.txt
+++ b/Tests/CompileFeatures/CMakeLists.txt
@@ -3,6 +3,14 @@ cmake_minimum_required(VERSION 3.0)
project(CompileFeatures)
+if (NOT CMAKE_CXX_COMPILE_FEATURES)
+ file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp"
+ "int main(int,char**) { return 0; }\n"
+ )
+ add_executable(CompileFeatures "${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp")
+ return()
+endif()
+
macro(run_test feature)
if (";${CMAKE_CXX_COMPILE_FEATURES};" MATCHES ${feature})
add_library(test_${feature} OBJECT ${feature}.cpp)