summarylogtreecommitdiffstats
path: root/pl-0002-makepkg-Remove-extraneous-compiler-flags.patch
blob: 3f5be40dd5c7f644ec857bc4ad52e456ed0e15f5 (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
From 8c8d1dcf38e4d6d61afd5710e8156cb613d733c0 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 | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index f801e3e..1a36e9a 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -34,8 +34,7 @@ add_library(libpl ${LIBRARY_TYPE}
         source/pl/lib/std/hash.cpp
 )
 
-target_compile_options(libpl PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-unknown-pragmas)
-
+target_compile_options(libpl PRIVATE -Wno-unknown-pragmas)
 target_include_directories(libpl PUBLIC include)
 target_link_libraries(libpl PRIVATE fmt::fmt-header-only)
 target_link_libraries(libpl PUBLIC intervaltree)
-- 
2.39.1