zdoom-macos-deps/deps/cmake/share/cmake-3.21/Modules/Platform/Android/abi-armeabi-Clang.cmake
2021-07-25 12:55:31 +03: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)