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

16 lines
320 B
CMake
Raw Normal View History

2021-07-25 09:55:31 +00:00
string(APPEND _ANDROID_ABI_INIT_CFLAGS
" -march=armv6"
)
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
" -mfloat-abi=softfp"
)
include(Platform/Android/abi-common-Clang)