summaryrefslogtreecommitdiff
path: root/libs/libevent/docs/cmake/AddCompilerFlags.cmake
blob: c7da188b7a54b301dc8f24fb9018c304ee900e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include(CheckCCompilerFlag)

macro(add_compiler_flags _flags)
	foreach(flag ${_flags})
		string(REGEX REPLACE "[-.+/:= ]" "_" _flag_esc "${flag}")

		check_c_compiler_flag("${flag}" check_c_compiler_flag_${_flag_esc})

		if (check_c_compiler_flag_${_flag_esc})
			set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}")
		endif()
	endforeach()
endmacro()