summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-03-30 00:38:10 +0100
committerMatthias Melcher <github@matthiasm.com>2025-03-30 00:38:10 +0100
commitbd9d1bc03809586d81a547a7a8acce903482910b (patch)
tree4b7fd3f97b41669c2b2e399fe6bd5365989697cf /fluid
parentb2b5e47ede75f0b3df06ed28537b459d79b9f867 (diff)
Fixes a couple of compiler warnings on AppleClang.
Diffstat (limited to 'fluid')
-rw-r--r--fluid/CMakeLists.txt13
1 files changed, 0 insertions, 13 deletions
diff --git a/fluid/CMakeLists.txt b/fluid/CMakeLists.txt
index bb28c2b9a..d1900b297 100644
--- a/fluid/CMakeLists.txt
+++ b/fluid/CMakeLists.txt
@@ -255,16 +255,3 @@ if(UNIX)
)
endforeach()
endif(UNIX)
-
-# Additional warnings during development
-
-if(APPLE)
- if (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
- target_compile_options(fluid-lib PRIVATE
- -Wall -Wextra -Wpedantic -Werror
- -Wno-zero-as-null-pointer-constant
- -Wno-missing-field-initializers
- -Wno-unused-parameter
- )
- endif()
-endif(APPLE)