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

compile-feature detection finally corrected

parent 12d3dc5c
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ if (ENABLE_CXX11)
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)
add_library(test_compiler_features cmake/dummy.cc)
foreach(feature ${REQUIRED_CXX_FEATURES})
target_compile_features(test_compiler_features PUBLIC ${feature})
endforeach(feature)
......
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