diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2018-08-20 16:03:41 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2018-08-20 18:42:03 +0200 |
commit | 8855a140cf801e03c0dcf0b5f9d0a8c22f0bd7b8 (patch) | |
tree | 22415916255002bb5436f931764303151d01ccb0 /CompilerChecks.cmake | |
parent | a9a99fb31f2b5b28a321b1637ed491ef0fdc9b2e (diff) | |
download | libssh-8855a140cf801e03c0dcf0b5f9d0a8c22f0bd7b8.tar.gz libssh-8855a140cf801e03c0dcf0b5f9d0a8c22f0bd7b8.tar.xz libssh-8855a140cf801e03c0dcf0b5f9d0a8c22f0bd7b8.zip |
cmake: Add support for picky developer flags
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'CompilerChecks.cmake')
-rw-r--r-- | CompilerChecks.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CompilerChecks.cmake b/CompilerChecks.cmake index 7219aafc..5762ee15 100644 --- a/CompilerChecks.cmake +++ b/CompilerChecks.cmake @@ -48,6 +48,12 @@ if (UNIX) list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector") endif() unset(CMAKE_REQUIRED_FLAGS) + + if (PICKY_DEVELOPER) + add_c_compiler_flag("-Werror" SUPPORTED_COMPILER_FLAGS) + add_c_compiler_flag("-Wno-error=deprecated-declarations" SUPPORTED_COMPILER_FLAGS) + add_c_compiler_flag("-Wno-error=tautological-compare" SUPPORTED_COMPILER_FLAGS) + endif() endif() if (MSVC) |