diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-16 22:39:13 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-10 12:19:15 +0200 |
commit | 3562e94650f603c35c52e5d88071314a53b8f0ab (patch) | |
tree | 4aad9eafa210d619096413b190b14950eaa3d133 | |
parent | 15c5bbcf222e9baa705ec0dfe5504b9db2d030ae (diff) | |
download | PrismLauncher-3562e94650f603c35c52e5d88071314a53b8f0ab.tar.gz PrismLauncher-3562e94650f603c35c52e5d88071314a53b8f0ab.tar.bz2 PrismLauncher-3562e94650f603c35c52e5d88071314a53b8f0ab.zip |
Revert "fix: ignore deprecation again"
We want to see deprecation warnings now
This reverts commit 47d0da2d96bc375410f5d494ac9371d47adf33d5.
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c49afaa9..b98502c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ set(CMAKE_C_STANDARD_REQUIRED true) set(CMAKE_CXX_STANDARD 11) set(CMAKE_C_STANDARD 11) include(GenerateExportHeader) -set(CMAKE_CXX_FLAGS "-Wall -pedantic -Werror -Wno-deprecated-declarations -D_GLIBCXX_USE_CXX11_ABI=0 -fstack-protector-strong --param=ssp-buffer-size=4 ${CMAKE_CXX_FLAGS}") +set(CMAKE_CXX_FLAGS "-Wall -pedantic -D_GLIBCXX_USE_CXX11_ABI=0 -fstack-protector-strong --param=ssp-buffer-size=4 ${CMAKE_CXX_FLAGS}") if(UNIX AND APPLE) set(CMAKE_CXX_FLAGS "-stdlib=libc++ ${CMAKE_CXX_FLAGS}") endif() |