From fdbd24c914a66b4d1e8c0a1d715854b9ef469837 Mon Sep 17 00:00:00 2001 From: Peter Harris Date: Tue, 17 Jun 2025 10:55:18 +0100 Subject: [PATCH] Disable CMake deprecation warnings in Android NDK Current NDK toolchain file always triggers these, so we can't fix them in the project wrapper. --- android_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/android_build.sh b/android_build.sh index e19aa23..0526f37 100755 --- a/android_build.sh +++ b/android_build.sh @@ -52,6 +52,7 @@ cmake \ -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ -DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake" \ -DCMAKE_INSTALL_PREFIX=../ \ + -DCMAKE_WARN_DEPRECATED=OFF \ .. make install -j8