summarylogtreecommitdiffstats
path: root/pl-0002-makepkg-Remove-extraneous-compiler-flags.patch
blob: 52b5342687aa68b6c9cb7c6643cfb83518a7f1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From 457106b700371e66d701efd6668d0f59083c5925 Mon Sep 17 00:00:00 2001
From: KokaKiwi <kokakiwi+git@kokakiwi.net>
Date: Sat, 17 Sep 2022 16:27:17 +0200
Subject: [PATCH 2/2] makepkg: Remove extraneous compiler flags

---
 lib/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index e1a1384..14eb593 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -34,7 +34,7 @@ add_library(libpl ${LIBRARY_TYPE}
         source/pl/lib/std/random.cpp
 )
 
-target_compile_options(libpl PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-unknown-pragmas -Wno-stringop-overread -Wno-stringop-overflow -Wno-array-bounds)
+target_compile_options(libpl PRIVATE -Wno-unknown-pragmas -Wno-stringop-overread -Wno-stringop-overflow -Wno-array-bounds)
 
 target_include_directories(libpl PUBLIC include)
 target_link_libraries(libpl PRIVATE fmt::fmt-header-only)
@@ -46,4 +46,4 @@ set_target_properties(libpl PROPERTIES PREFIX "")
 
 if (LIBPL_SHARED_LIBRARY)
     install(TARGETS libpl DESTINATION lib)
-endif ()
\ No newline at end of file
+endif ()
-- 
2.40.0