mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
CMake: document -Werror for add_c_flag_if_supported() from #7718
This commit is contained in:
parent
ed506006d2
commit
0a021c3bd1
@ -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})
|
||||
|
Loading…
Reference in New Issue
Block a user