mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
39 lines
1.2 KiB
CMake
39 lines
1.2 KiB
CMake
# - Adds a compiler flag if it is supported by the compiler
|
|
#
|
|
# This function checks that the supplied compiler flag is supported and then
|
|
# adds it to the corresponding compiler flags
|
|
#
|
|
# add_c_compiler_flag(<FLAG> [<VARIANT>])
|
|
#
|
|
# - Example
|
|
#
|
|
# include(AddCCompilerFlag)
|
|
# add_c_compiler_flag(-Wall)
|
|
# add_c_compiler_flag(-no-strict-aliasing RELEASE)
|
|
# Requires CMake 2.6+
|
|
|
|
if(__add_c_compiler_flag)
|
|
return()
|
|
endif()
|
|
set(__add_c_compiler_flag INCLUDED)
|
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
function(add_c_compiler_flag FLAG)
|
|
string(TOUPPER "HAVE_C_FLAG_${FLAG}" SANITIZED_FLAG)
|
|
string(REPLACE "+" "X" SANITIZED_FLAG ${SANITIZED_FLAG})
|
|
string(REGEX REPLACE "[^A-Za-z_0-9]" "_" SANITIZED_FLAG ${SANITIZED_FLAG})
|
|
string(REGEX REPLACE "_+" "_" SANITIZED_FLAG ${SANITIZED_FLAG})
|
|
check_c_compiler_flag("${FLAG}" ${SANITIZED_FLAG})
|
|
if(${${SANITIZED_FLAG}})
|
|
set(${SANITIZED_FLAG} ON PARENT_SCOPE )
|
|
set(VARIANT ${ARGV1})
|
|
if(ARGV1)
|
|
string(REGEX REPLACE "[^A-Za-z_0-9]" "_" VARIANT "${VARIANT}")
|
|
string(TOUPPER "_${VARIANT}" VARIANT)
|
|
endif()
|
|
set(CMAKE_C_FLAGS${VARIANT} "${CMAKE_C_FLAGS${VARIANT}} ${FLAG}" PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|
|
|