cmake, refactor: Rename try_add_compile_option to try_append_cflags

Actually, `try_append_cflags()` can handle a list of flags, and the new
name is similar to the one used in `configure.ac`.
This commit is contained in:
Hennadii Stepanov
2023-03-22 10:35:49 +00:00
parent 19516ed3e9
commit 6ece1507cb
2 changed files with 18 additions and 18 deletions

View File

@@ -16,7 +16,7 @@ function(secp256k1_check_c_flags_internal flags output)
endfunction()
# Append flags to the COMPILE_OPTIONS directory property if CC accepts them.
macro(try_add_compile_option)
macro(try_append_c_flags)
secp256k1_check_c_flags_internal("${ARGV}" result)
if(result)
add_compile_options(${ARGV})