mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -06:00
If the user or toolchain file has already set `CMAKE_{C,CXX}_COMPILER`,
do not override it with the NDK-provided toolchain.
Fixes: #27162
6 lines
121 B
CMake
6 lines
121 B
CMake
if(CMAKE_CXX_COMPILER)
|
|
return()
|
|
endif()
|
|
include(Platform/Android/Determine-Compiler)
|
|
__android_determine_compiler(CXX)
|