We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e454aea commit e918a76Copy full SHA for e918a76
test/CMakeLists.txt
@@ -7,6 +7,9 @@ set(RESOURCE_FILES
7
8
function(add_sdl_mixer_test_executable TARGET)
9
add_executable(${TARGET} ${ARGN})
10
+ if("c_std_99" IN_LIST CMAKE_C_COMPILE_FEATURES)
11
+ target_compile_features(${TARGET} PRIVATE c_std_99)
12
+ endif()
13
target_compile_definitions(${TARGET}
14
PRIVATE
15
$<TARGET_PROPERTY:${sdl3_mixer_target_name},COMPILE_DEFINITIONS>
0 commit comments