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 40 41 42 43 44 45 46 47 48 49
|
---
src/CMakeLists.txt | 2 --
src/core/CMakeLists.txt | 1 -
src/instrumentation/CMakeLists.txt | 1 -
src/modules/omp/CMakeLists.txt | 3 ---
src/modules/papi/CMakeLists.txt | 1 -
test/unit_tests/CMakeLists.txt | 1 -
6 files changed, 9 deletions(-)
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -33,7 +33,6 @@ target_include_directories(eztrace-core
target_compile_options(eztrace-core
PRIVATE
-Wall -Wextra
- -Werror
)
if (HAVE_DEMANGLE)
--- a/src/instrumentation/CMakeLists.txt
+++ b/src/instrumentation/CMakeLists.txt
@@ -74,7 +74,6 @@ target_compile_options(eztrace-instrumen
PUBLIC
${EZTRACE_BINARY_INSTRUMENTATION_FLAG}
PRIVATE
- # -Werror # TODO
${COMPILE_FLAGS}
)
--- a/src/modules/papi/CMakeLists.txt
+++ b/src/modules/papi/CMakeLists.txt
@@ -14,7 +14,6 @@ target_include_directories(eztrace-papi
target_compile_options(eztrace-papi
PRIVATE
-Wall -Wextra -Wpedantic
- -Werror
)
target_link_libraries(eztrace-papi
--- a/test/unit_tests/CMakeLists.txt
+++ b/test/unit_tests/CMakeLists.txt
@@ -12,7 +12,6 @@ target_link_libraries(htable
target_compile_options(htable
PRIVATE
-Wall -Wextra -Wpedantic
- -Werror
)
target_include_directories(htable
|