Files
CMake/Modules/Platform/Android-Determine-CXX.cmake
Brad King 9266d4817d Android: Allow custom compilers with NDK
If the user or toolchain file has already set `CMAKE_{C,CXX}_COMPILER`,
do not override it with the NDK-provided toolchain.

Fixes: #27162
2025-09-17 10:44:47 -04:00

6 lines
121 B
CMake

if(CMAKE_CXX_COMPILER)
return()
endif()
include(Platform/Android/Determine-Compiler)
__android_determine_compiler(CXX)