Specify minimum C++ version for amalgamated test build

This target previously did not specify its minimum C++ standard.
AppleClang was emitting warnings about the use of C++11 features
which is fixed by telling CMake that this target requires C++14.
Because this target does not link to the existing CMake targets
it never inherited that C++ standard requirement.
This commit is contained in:
Chris Thrasher 2024-03-13 11:16:07 -06:00 committed by Martin Hořeňovský
parent a2a3c55058
commit bfe3ff8f19
1 changed files with 1 additions and 0 deletions

View File

@ -556,6 +556,7 @@ add_executable(AmalgamatedTestCompilation
${CATCH_DIR}/extras/catch_amalgamated.cpp
)
target_include_directories(AmalgamatedTestCompilation PRIVATE ${CATCH_DIR}/extras)
target_compile_features(AmalgamatedTestCompilation PRIVATE cxx_std_14)
add_test(NAME AmalgamatedFileTest COMMAND AmalgamatedTestCompilation)
set_tests_properties(