2023-02-28 06:20:30 +03:00
|
|
|
macro(SDL_DetectCompiler)
|
|
|
|
set(USE_CLANG FALSE)
|
|
|
|
set(USE_GCC FALSE)
|
|
|
|
set(USE_INTELCC FALSE)
|
|
|
|
set(USE_QCC FALSE)
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "Clang|IntelLLVM")
|
|
|
|
set(USE_CLANG TRUE)
|
|
|
|
# Visual Studio 2019 v16.2 added support for Clang/LLVM.
|
|
|
|
# Check if a Visual Studio project is being generated with the Clang toolset.
|
|
|
|
if(MSVC)
|
|
|
|
set(MSVC_CLANG TRUE)
|
|
|
|
endif()
|
|
|
|
elseif(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
set(USE_GCC TRUE)
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "^Intel$")
|
|
|
|
set(USE_INTELCC TRUE)
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "QCC")
|
|
|
|
set(USE_QCC TRUE)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2024-03-07 00:21:24 +03:00
|
|
|
function(sdl_target_compile_option_all_languages TARGET OPTION)
|
|
|
|
target_compile_options(${TARGET} PRIVATE "$<$<COMPILE_LANGUAGE:C,CXX>:${OPTION}>")
|
|
|
|
if(CMAKE_OBJC_COMPILER)
|
|
|
|
target_compile_options(${TARGET} PRIVATE "$<$<COMPILE_LANGUAGE:OBJC>:${OPTION}>")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2023-02-28 06:20:30 +03:00
|
|
|
function(SDL_AddCommonCompilerFlags TARGET)
|
|
|
|
option(SDL_WERROR "Enable -Werror" OFF)
|
|
|
|
|
2024-07-12 00:27:13 +03:00
|
|
|
get_property(TARGET_TYPE TARGET "${TARGET}" PROPERTY TYPE)
|
2024-08-08 01:25:27 +03:00
|
|
|
if(MSVC)
|
|
|
|
cmake_push_check_state()
|
|
|
|
check_c_compiler_flag("/W3" COMPILER_SUPPORTS_W3)
|
|
|
|
if(COMPILER_SUPPORTS_W3)
|
|
|
|
target_compile_options(${TARGET} PRIVATE "/W3")
|
|
|
|
endif()
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endif()
|
2024-07-12 00:27:13 +03:00
|
|
|
|
2023-02-28 06:20:30 +03:00
|
|
|
if(USE_GCC OR USE_CLANG OR USE_INTELCC OR USE_QCC)
|
|
|
|
if(MINGW)
|
|
|
|
# See if GCC's -gdwarf-4 is supported
|
|
|
|
# See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101377 for why this is needed on Windows
|
|
|
|
cmake_push_check_state()
|
|
|
|
check_c_compiler_flag("-gdwarf-4" HAVE_GDWARF_4)
|
|
|
|
if(HAVE_GDWARF_4)
|
2024-10-05 02:32:27 +03:00
|
|
|
target_compile_options(${TARGET} PRIVATE "$<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:-gdwarf-4>")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Check for -Wall first, so later things can override pieces of it.
|
|
|
|
# Note: clang-cl treats -Wall as -Weverything (which is very loud),
|
|
|
|
# /W3 as -Wall, and /W4 as -Wall -Wextra. So: /W3 is enough.
|
|
|
|
check_c_compiler_flag(-Wall HAVE_GCC_WALL)
|
|
|
|
if(MSVC_CLANG)
|
|
|
|
target_compile_options(${TARGET} PRIVATE "/W3")
|
|
|
|
elseif(HAVE_GCC_WALL)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wall")
|
2023-02-28 06:20:30 +03:00
|
|
|
if(HAIKU)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wno-multichar")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-Wundef HAVE_GCC_WUNDEF)
|
|
|
|
if(HAVE_GCC_WUNDEF)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wundef")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
2024-06-04 00:33:29 +03:00
|
|
|
check_c_compiler_flag(-Wfloat-conversion HAVE_GCC_WFLOAT_CONVERSION)
|
|
|
|
if(HAVE_GCC_WFLOAT_CONVERSION)
|
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wfloat-conversion")
|
|
|
|
endif()
|
|
|
|
|
2023-02-28 06:20:30 +03:00
|
|
|
check_c_compiler_flag(-fno-strict-aliasing HAVE_GCC_NO_STRICT_ALIASING)
|
|
|
|
if(HAVE_GCC_NO_STRICT_ALIASING)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-fno-strict-aliasing")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-Wdocumentation HAVE_GCC_WDOCUMENTATION)
|
|
|
|
if(HAVE_GCC_WDOCUMENTATION)
|
|
|
|
if(SDL_WERROR)
|
|
|
|
check_c_compiler_flag(-Werror=documentation HAVE_GCC_WERROR_DOCUMENTATION)
|
|
|
|
if(HAVE_GCC_WERROR_DOCUMENTATION)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Werror=documentation")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wdocumentation")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-Wdocumentation-unknown-command HAVE_GCC_WDOCUMENTATION_UNKNOWN_COMMAND)
|
|
|
|
if(HAVE_GCC_WDOCUMENTATION_UNKNOWN_COMMAND)
|
|
|
|
if(SDL_WERROR)
|
|
|
|
check_c_compiler_flag(-Werror=documentation-unknown-command HAVE_GCC_WERROR_DOCUMENTATION_UNKNOWN_COMMAND)
|
|
|
|
if(HAVE_GCC_WERROR_DOCUMENTATION_UNKNOWN_COMMAND)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Werror=documentation-unknown-command")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wdocumentation-unknown-command")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-fcomment-block-commands=threadsafety HAVE_GCC_COMMENT_BLOCK_COMMANDS)
|
|
|
|
if(HAVE_GCC_COMMENT_BLOCK_COMMANDS)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-fcomment-block-commands=threadsafety")
|
2023-02-28 06:20:30 +03:00
|
|
|
else()
|
|
|
|
check_c_compiler_flag(/clang:-fcomment-block-commands=threadsafety HAVE_CLANG_COMMENT_BLOCK_COMMANDS)
|
|
|
|
if(HAVE_CLANG_COMMENT_BLOCK_COMMANDS)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "/clang:-fcomment-block-commands=threadsafety")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-Wshadow HAVE_GCC_WSHADOW)
|
|
|
|
if(HAVE_GCC_WSHADOW)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wshadow")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-Wunused-local-typedefs HAVE_GCC_WUNUSED_LOCAL_TYPEDEFS)
|
|
|
|
if(HAVE_GCC_WUNUSED_LOCAL_TYPEDEFS)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wno-unused-local-typedefs")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
2024-03-18 19:56:22 +03:00
|
|
|
|
|
|
|
check_c_compiler_flag(-Wimplicit-fallthrough HAVE_GCC_WIMPLICIT_FALLTHROUGH)
|
|
|
|
if(HAVE_GCC_WIMPLICIT_FALLTHROUGH)
|
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Wimplicit-fallthrough")
|
|
|
|
endif()
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(SDL_WERROR)
|
|
|
|
if(MSVC)
|
|
|
|
check_c_compiler_flag(/WX HAVE_WX)
|
|
|
|
if(HAVE_WX)
|
|
|
|
target_compile_options(${TARGET} PRIVATE "/WX")
|
|
|
|
endif()
|
|
|
|
elseif(USE_GCC OR USE_CLANG OR USE_INTELCC OR USE_QNX)
|
|
|
|
check_c_compiler_flag(-Werror HAVE_WERROR)
|
|
|
|
if(HAVE_WERROR)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-Werror")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
2024-07-12 00:27:13 +03:00
|
|
|
|
|
|
|
if(TARGET_TYPE STREQUAL "SHARED_LIBRARY")
|
|
|
|
check_linker_flag(C "-Wl,--no-undefined-version" LINKER_SUPPORTS_NO_UNDEFINED_VERSION)
|
|
|
|
if(LINKER_SUPPORTS_NO_UNDEFINED_VERSION)
|
|
|
|
target_link_options(${TARGET} PRIVATE "-Wl,--no-undefined-version")
|
|
|
|
endif()
|
|
|
|
endif()
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_CLANG)
|
|
|
|
check_c_compiler_flag("-fcolor-diagnostics" COMPILER_SUPPORTS_FCOLOR_DIAGNOSTICS)
|
|
|
|
if(COMPILER_SUPPORTS_FCOLOR_DIAGNOSTICS)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-fcolor-diagnostics")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
check_c_compiler_flag("-fdiagnostics-color=always" COMPILER_SUPPORTS_FDIAGNOSTICS_COLOR_ALWAYS)
|
|
|
|
if(COMPILER_SUPPORTS_FDIAGNOSTICS_COLOR_ALWAYS)
|
2024-03-07 00:21:24 +03:00
|
|
|
sdl_target_compile_option_all_languages(${TARGET} "-fdiagnostics-color=always")
|
2023-02-28 06:20:30 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endfunction()
|