From ee9c504d1c0b1d6afdb3b3239973a35087bf9930 Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Thu, 9 Nov 2017 21:05:14 +0100 Subject: [PATCH] Change -Weverything to -Wall for more compilers --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d8272da..6ec480a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -60,7 +60,7 @@ if(UNIX) target_link_libraries(discord-rpc PUBLIC pthread) target_compile_options(discord-rpc PRIVATE -g - -Weverything + -Wall -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