add WARNINGS_AS_ERRORS cmake option (#176)

This commit is contained in:
Ben Morse
2018-05-10 17:46:11 -07:00
committed by GitHub
parent aa02012c14
commit 566076e3d8
3 changed files with 11 additions and 1 deletions

View File

@ -2,6 +2,7 @@ include_directories(${PROJECT_SOURCE_DIR}/include)
option(ENABLE_IO_THREAD "Start up a separate I/O thread, otherwise I'd need to call an update function" ON)
option(USE_STATIC_CRT "Use /MT[d] for dynamic library" OFF)
option(WARNINGS_AS_ERRORS "When enabled, compiles with `-Werror` (on *nix platforms)." OFF)
set(CMAKE_CXX_STANDARD 14)
@ -76,7 +77,13 @@ if(UNIX)
-Wall
-Wextra
-Wpedantic
-Werror
)
if (${WARNINGS_AS_ERRORS})
target_compile_options(discord-rpc PRIVATE -Werror)
endif (${WARNINGS_AS_ERRORS})
target_compile_options(discord-rpc PRIVATE
-Wno-unknown-pragmas # pragma push thing doesn't work on clang
-Wno-old-style-cast # it's fine
-Wno-c++98-compat # that was almost 2 decades ago