2014-04-02 17:34:16 +04:00
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
|
|
|
|
project(CompileFeatures)
|
|
|
|
|
2013-11-04 04:15:43 +04:00
|
|
|
if (NOT CMAKE_C_COMPILE_FEATURES AND NOT CMAKE_CXX_COMPILE_FEATURES)
|
2014-04-16 19:22:01 +04:00
|
|
|
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()
|
|
|
|
|
2014-04-06 15:00:17 +04:00
|
|
|
macro(run_test feature lang)
|
|
|
|
if (";${CMAKE_${lang}_COMPILE_FEATURES};" MATCHES ${feature})
|
|
|
|
add_library(test_${feature} OBJECT ${feature})
|
2014-04-02 17:34:16 +04:00
|
|
|
set_property(TARGET test_${feature}
|
|
|
|
PROPERTY COMPILE_FEATURES "${feature}"
|
|
|
|
)
|
|
|
|
else()
|
2014-04-06 15:00:17 +04:00
|
|
|
list(APPEND ${lang}_non_features ${feature})
|
2014-04-02 17:34:16 +04:00
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2013-11-04 04:15:43 +04:00
|
|
|
get_property(c_features GLOBAL PROPERTY CMAKE_C_KNOWN_FEATURES)
|
|
|
|
foreach(feature ${c_features})
|
|
|
|
run_test(${feature} C)
|
|
|
|
endforeach()
|
2014-04-06 15:00:17 +04:00
|
|
|
get_property(cxx_features GLOBAL PROPERTY CMAKE_CXX_KNOWN_FEATURES)
|
|
|
|
foreach(feature ${cxx_features})
|
|
|
|
run_test(${feature} CXX)
|
2014-04-02 17:34:16 +04:00
|
|
|
endforeach()
|
|
|
|
|
2013-10-21 18:59:40 +04:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL GNU
|
|
|
|
AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8)
|
|
|
|
list(REMOVE_ITEM CXX_non_features
|
|
|
|
cxx_alignof
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-11-04 04:15:43 +04:00
|
|
|
set(C_ext c)
|
|
|
|
set(C_standard_flag 11)
|
2014-05-09 19:27:55 +04:00
|
|
|
set(CXX_ext cpp)
|
|
|
|
set(CXX_standard_flag 11)
|
2013-11-04 04:15:43 +04:00
|
|
|
foreach(lang CXX C)
|
2014-05-09 19:27:55 +04:00
|
|
|
if (CMAKE_${lang}_COMPILE_FEATURES)
|
|
|
|
foreach(feature ${${lang}_non_features})
|
|
|
|
message("Testing feature : ${feature}")
|
|
|
|
try_compile(${feature}_works
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/${feature}_test"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/feature_test.${${lang}_ext}"
|
|
|
|
COMPILE_DEFINITIONS "-DTEST=${CMAKE_CURRENT_SOURCE_DIR}/${feature}.${${lang}_ext}"
|
|
|
|
CMAKE_FLAGS "-DCMAKE_${lang}_STANDARD=${${lang}_standard_flag}"
|
|
|
|
OUTPUT_VARIABLE OUTPUT
|
|
|
|
)
|
|
|
|
if (${feature}_works)
|
|
|
|
message(SEND_ERROR
|
|
|
|
"Feature ${feature} expected not to work for ${lang} ${CMAKE_${lang}_COMPILER_ID}-${CMAKE_${lang}_COMPILER_VERSION}.
|
|
|
|
Update the supported features or blacklist it.\n${OUTPUT}")
|
|
|
|
else()
|
|
|
|
message("Testing feature : ${feature} -- Fails, as expected.")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
2014-04-06 15:00:17 +04:00
|
|
|
|
2014-04-02 17:34:16 +04:00
|
|
|
add_executable(CompileFeatures main.cpp)
|
|
|
|
set_property(TARGET CompileFeatures
|
|
|
|
PROPERTY COMPILE_FEATURES "cxx_auto_type"
|
|
|
|
)
|
2014-04-30 20:07:38 +04:00
|
|
|
set_property(TARGET CompileFeatures
|
|
|
|
PROPERTY CXX_STANDARD_REQUIRED TRUE
|
|
|
|
)
|
2013-10-22 17:05:49 +04:00
|
|
|
|
|
|
|
add_executable(GenexCompileFeatures main.cpp)
|
|
|
|
set_property(TARGET GenexCompileFeatures
|
|
|
|
PROPERTY COMPILE_FEATURES "$<1:cxx_auto_type>;$<0:not_a_feature>"
|
|
|
|
)
|
2013-10-22 03:40:47 +04:00
|
|
|
|
|
|
|
add_library(iface INTERFACE)
|
|
|
|
set_property(TARGET iface
|
|
|
|
PROPERTY INTERFACE_COMPILE_FEATURES "cxx_auto_type"
|
|
|
|
)
|
|
|
|
add_executable(IfaceCompileFeatures main.cpp)
|
|
|
|
target_link_libraries(IfaceCompileFeatures iface)
|