From e0f76af21f1424909a0627593ce0e2a37ef11a76 Mon Sep 17 00:00:00 2001 From: Bruno Van de Velde Date: Wed, 15 Nov 2023 15:04:42 +0100 Subject: [PATCH] Removed the warning for not being able to select the STL for Tegra-Android, as libc++ is the only STL left --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a6cd989f..4cd933f92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,11 +81,6 @@ if(SFML_OS_ANDROID) # avoid missing libraries when building SFML for Android with NDK r19c and later list(PREPEND CMAKE_FIND_ROOT_PATH "${PROJECT_SOURCE_DIR}") - # CMake doesn't support defining the STL to be used with Nsight Tegra, so warn the user - if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android") - message(WARNING "CMake might not properly support setting the STL. Make sure to adjust all generated library projects!") - endif() - # install everything in $NDK/sources/ because this path is appended by the NDK (convenient) set(CMAKE_INSTALL_PREFIX ${CMAKE_ANDROID_NDK}/sources/third_party/sfml)