aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-02-09 15:20:25 +0100
committerAndre Weissflog <floooh@gmail.com>2025-02-09 15:20:25 +0100
commit099a0d15cded01d0171eed8637a5da824b0f486a (patch)
tree8cb454915afcd61a4a1431868bd11bb432a62a53 /tests
parentdf40375df99fd93380b4898f18ee34b888dd64f6 (diff)
tests/CMakeLists.txt: remove the -Wno-deprecated-declarations exception for iOS
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index a063f809..cb1fb1f4 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -61,11 +61,6 @@ else()
set(c_flags ${c_flags} -Wno-missing-field-initializers)
set(cxx_flags ${cxx_flags} -Wno-missing-field-initializers)
endif()
- if (OSX_IOS)
- # temp fix for PVRTC formats
- set(c_flags ${c_flags} -Wno-deprecated-declarations)
- set(cxx_flags ${cxx_flags} -Wno-deprecated-declarations)
- endif()
if (USE_ANALYZER)
# FIXME: consider using clang-tidy via CMAKE_CXX_CLANG_TIDY: https://ortogonal.github.io/cmake-clang-tidy/
# with the default settings this spams the output with irrelevant C++ coding style warnings in 3rd party libs though