blob: d85ce61caca41c852e947f7536aa4b2e5fadde71 (
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
|
--- a/cmake/modules/Compiler/ClangApple.cmake
+++ b/cmake/modules/Compiler/ClangApple.cmake
@@ -15,7 +15,7 @@ endif()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
-Wshadow
-Wstrict-prototypes
--- a/cmake/modules/Compiler/ClangGNU.cmake
+++ b/cmake/modules/Compiler/ClangGNU.cmake
@@ -19,7 +19,7 @@ endif()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
-Wshadow
-Wstrict-prototypes
--- a/cmake/modules/Compiler/GNU.cmake
+++ b/cmake/modules/Compiler/GNU.cmake
@@ -20,7 +20,7 @@ endif()
target_compile_options(
lcevc_dec::compiler
- INTERFACE -Werror
+ INTERFACE #-Werror
-Wall
# -Wshadow
-Wwrite-strings
|