mirror of
https://github.com/jb55/nostril.git
synced 2024-11-24 08:59:08 -05:00
25 lines
685 B
CMake
25 lines
685 B
CMake
|
include(CheckCCompilerFlag)
|
||
|
|
||
|
function(secp256k1_check_c_flags_internal flags output)
|
||
|
string(MAKE_C_IDENTIFIER "${flags}" result)
|
||
|
string(TOUPPER "${result}" result)
|
||
|
set(result "C_SUPPORTS_${result}")
|
||
|
if(NOT MSVC)
|
||
|
set(CMAKE_REQUIRED_FLAGS "-Werror")
|
||
|
endif()
|
||
|
|
||
|
# This avoids running a linker.
|
||
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
||
|
check_c_compiler_flag("${flags}" ${result})
|
||
|
|
||
|
set(${output} ${${result}} PARENT_SCOPE)
|
||
|
endfunction()
|
||
|
|
||
|
# Append flags to the COMPILE_OPTIONS directory property if CC accepts them.
|
||
|
macro(try_append_c_flags)
|
||
|
secp256k1_check_c_flags_internal("${ARGV}" result)
|
||
|
if(result)
|
||
|
add_compile_options(${ARGV})
|
||
|
endif()
|
||
|
endmacro()
|