diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-22 20:57:52 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-22 20:57:52 +0200 |
commit | 309dcc82cade6aee1af04534c8e307b56fcac848 (patch) | |
tree | a102678ce4cf751043c81b1258e35a6f220e9bf3 /CMakeLists.txt | |
parent | 0922a7f410d8675778bcf4720438efaa128b662b (diff) | |
download | PrismLauncher-309dcc82cade6aee1af04534c8e307b56fcac848.tar.gz PrismLauncher-309dcc82cade6aee1af04534c8e307b56fcac848.tar.bz2 PrismLauncher-309dcc82cade6aee1af04534c8e307b56fcac848.zip |
Revert "fix: temporarily ignore stringop-overflow warning"
This reverts commit 90007e2d9d4f63cfc9dc73888af34a17657b5102.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f54dd7ba..ef4adf90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,10 +38,6 @@ set(CMAKE_CXX_FLAGS "-Wall -pedantic -Werror -Wno-deprecated-declarations -D_GLI if(UNIX AND APPLE) set(CMAKE_CXX_FLAGS "-stdlib=libc++ ${CMAKE_CXX_FLAGS}") endif() -# FIXME: GCC 12 complains about some random stuff in bundled QuaZip. Need to fix this later -if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - set(CMAKE_CXX_FLAGS "-Wno-error=stringop-overflow ${CMAKE_CXX_FLAGS}") -endif() # Fix build with Qt 5.13 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_DEPRECATED_WARNINGS=Y") |