Drop cxx_constexpr from target compile features

It turns out, this is not supported on MSVC 2013. Presumably
cxx_auto_type is sufficient to force C++11 on all supported compilers.
This commit is contained in:
Kenneth Moreland 2016-10-03 10:28:44 -06:00
parent 9f0bd78860
commit 13534a06b9

@ -61,7 +61,7 @@ set(VTKm_INCLUDE_DIRS
# This is also exported so that dependent CMake projects can load the same
# configuration.
add_library(vtkm INTERFACE)
target_compile_features(vtkm INTERFACE cxx_constexpr cxx_auto_type)
target_compile_features(vtkm INTERFACE cxx_auto_type)
install(TARGETS vtkm EXPORT ${VTKm_EXPORT_NAME})
# Load the base VTK-m configuration, which is required for some of the later