Make the check_cxx_compiler_flag invocation lowercase
This commit is contained in:
parent
b6273e0d62
commit
15cbe06f0c
|
@ -56,7 +56,7 @@ if (${IS_GNU} OR ${IS_CLANG})
|
|||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -ffunction-sections -fdata-sections -fmerge-all-constants -ftree-vectorize")
|
||||
include(CheckCXXCompilerFlag)
|
||||
set(CF_PROTECTION "-fcf-protection")
|
||||
CHECK_CXX_COMPILER_FLAG("${CF_PROTECTION}" CF_PROTECTION_SUPPORTED)
|
||||
check_cxx_compiler_flag("${CF_PROTECTION}" CF_PROTECTION_SUPPORTED)
|
||||
if (CF_PROTECTION_SUPPORTED)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CF_PROTECTION}")
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue