summaryrefslogtreecommitdiff
path: root/Modules/Platform/Android-Clang-CXX.cmake
blob: 85d5088800cd640b3f42628ac310cb20160f4647 (plain)
1
2
3
4
5
6
7
8
9
include(Platform/Android-Clang)
__android_compiler_clang(CXX)
if(_ANDROID_STL_NOSTDLIBXX)
  if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 6)
    string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " -nostdlib++")
  else()
    string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " -nodefaultlibs -lgcc -lc -lm -ldl")
  endif()
endif()