zdoom-macos-deps/deps/cmake/share/cmake-3.25/Modules/Platform/Android/abi-armeabi-Clang.cmake
2023-01-10 16:43:43 +02:00

16 lines
335 B
CMake

string(APPEND _ANDROID_ABI_INIT_CFLAGS
" -march=armv5te"
)
if(CMAKE_ANDROID_ARM_MODE)
string(APPEND _ANDROID_ABI_INIT_CFLAGS " -marm")
else()
string(APPEND _ANDROID_ABI_INIT_CFLAGS " -mthumb")
endif()
string(APPEND _ANDROID_ABI_INIT_CFLAGS
" -msoft-float"
" -mtune=xscale"
)
include(Platform/Android/abi-common-Clang)