blob: 2cc52d322278e1110dbda15081bdf1103c2fbb99 (
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
33
34
35
36
37
38
39
|
diff --git a/cmake/modules/Compiler/ClangApple.cmake b/cmake/modules/Compiler/ClangApple.cmake
index 31c7a4e..a6836d3 100644
--- a/cmake/modules/Compiler/ClangApple.cmake
+++ b/cmake/modules/Compiler/ClangApple.cmake
@@ -18,7 +18,7 @@ endif ()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
-Wshadow
-Wstrict-prototypes
diff --git a/cmake/modules/Compiler/ClangGNU.cmake b/cmake/modules/Compiler/ClangGNU.cmake
index 3ce563e..eba9139 100644
--- a/cmake/modules/Compiler/ClangGNU.cmake
+++ b/cmake/modules/Compiler/ClangGNU.cmake
@@ -22,7 +22,7 @@ endif ()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
-Wshadow
-Wstrict-prototypes
diff --git a/cmake/modules/Compiler/GNU.cmake b/cmake/modules/Compiler/GNU.cmake
index 08b8a20..58453a2 100644
--- a/cmake/modules/Compiler/GNU.cmake
+++ b/cmake/modules/Compiler/GNU.cmake
@@ -23,7 +23,7 @@ endif ()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
# -Wshadow
-Wwrite-strings
|