1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

CMake: Update some CXX_STANDARD statements to 17

This commit is contained in:
Tom Poole 2022-11-09 14:28:27 +00:00
parent 473283fa19
commit ad1329dd0e
2 changed files with 3 additions and 7 deletions

View file

@ -63,7 +63,7 @@ function(_juce_create_atomic_target target_name)
try_compile(compile_result "${test_bindir}" "${test_file_name}"
OUTPUT_VARIABLE test_build_output_0
CXX_STANDARD 14
CXX_STANDARD 17
CXX_STANDARD_REQUIRED TRUE
CXX_EXTENSIONS FALSE)
@ -71,7 +71,7 @@ function(_juce_create_atomic_target target_name)
try_compile(compile_result "${test_bindir}" "${test_file_name}"
OUTPUT_VARIABLE test_build_output_1
LINK_LIBRARIES atomic
CXX_STANDARD 14
CXX_STANDARD 17
CXX_STANDARD_REQUIRED TRUE
CXX_EXTENSIONS FALSE)
@ -81,7 +81,7 @@ function(_juce_create_atomic_target target_name)
try_compile(compile_result "${test_bindir}" "${test_file_name}"
OUTPUT_VARIABLE test_build_output_2
LINK_LIBRARIES atomic
CXX_STANDARD 14
CXX_STANDARD 17
CXX_STANDARD_REQUIRED TRUE
CXX_EXTENSIONS FALSE)