mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
16 lines
536 B
CMake
16 lines
536 B
CMake
# - Check whether the compiler supports a given flag.
|
|
# CHECK_CXX_COMPILER_FLAG(FLAG VARIABLE)
|
|
#
|
|
# FLAG - the compiler flag
|
|
# VARIABLE - variable to store the result
|
|
#
|
|
|
|
INCLUDE(CheckCXXSourceCompiles)
|
|
|
|
MACRO (CHECK_CXX_COMPILER_FLAG _FLAG _RESULT)
|
|
SET(SAFE_CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS}")
|
|
SET(CMAKE_REQUIRED_DEFINITIONS "${_FLAG}")
|
|
CHECK_CXX_SOURCE_COMPILES("int main() { return 0;}" ${_RESULT})
|
|
SET (CMAKE_REQUIRED_DEFINITIONS "${SAFE_CMAKE_REQUIRED_DEFINITIONS}")
|
|
ENDMACRO (CHECK_CXX_COMPILER_FLAG)
|
|
|