zdoom-macos-deps/deps/cmake/share/cmake-3.25/Modules/Platform/Android/abi-armeabi-Clang.cmake

17 lines
335 B
CMake
Raw Normal View History

2021-07-25 09:55:31 +00:00
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)