Merge pull request #7847

0a021c3 CMake: document -Werror for add_c_flag_if_supported() from #7718 (mj-xmr)
This commit is contained in:
luigi1111 2021-08-26 21:11:37 -04:00
commit 4ada08ad9a
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ function (die msg)
endfunction ()
function (add_c_flag_if_supported flag var)
# Prepending the flag with -Werror will only add the flag,
# if it doesn't result in generation of a warning of using a flag unknown to the compiler.
set(TMP "-Werror ${flag}")
string(REGEX REPLACE "[- ]" "_" supported ${TMP}_c)
check_c_compiler_flag(${TMP} ${supported})