mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-06 00:40:51 +00:00
16 lines
335 B
CMake
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)
|