cmake/Modules/Platform/Android/abi-armeabi-v6-Clang.cmake

16 lines
320 B
CMake
Raw Normal View History

2016-10-30 18:24:19 +01: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)