Skip to content
Snippets Groups Projects
Commit 12d3dc5c authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

compiler-feature test modified

parent 7e699189
No related branches found
No related tags found
No related merge requests found
......@@ -268,13 +268,6 @@ else()
endif()
if (${CMAKE_VERSION} VERSION_GREATER "3.0")
foreach(feature in ${REQUIRED_CXX_FEATURES})
target_compile_features(amdis INTERFACE feature)
target_compile_features(muparser INTERFACE feature)
endforeach(feature)
endif ()
list(APPEND AMDIS_LIBS amdis ${Boost_LIBRARIES})
# some special treatements for Windows systems
......
......@@ -6,6 +6,11 @@ if (ENABLE_CXX11)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(REQUIRED_CXX_FEATURES "cxx_alias_templates" "cxx_auto_type" "cxx_lambdas" "cxx_override" "cxx_range_for" "cxx_static_assert" "cxx_variadic_templates")
add_library(test_compiler_features dummy.cc)
foreach(feature ${REQUIRED_CXX_FEATURES})
target_compile_features(test_compiler_features PUBLIC ${feature})
endforeach(feature)
else()
if (CMAKE_COMPILER_IS_GNUCXX)
set(GXX_MIN_VER "4.8")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment