mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 13:45:38 +00:00
(Android) Added the Android API level to a CMake build message
This commit is contained in:
parent
811118d3ee
commit
e9457306a8
|
@ -392,10 +392,10 @@ endif()
|
|||
|
||||
if(ANDROID)
|
||||
if(ANDROID_ABI MATCHES arm64-v8a)
|
||||
message("-- Building for Android arm64-v8a")
|
||||
message("-- Building for Android arm64-v8a on API level ${ANDROID_PLATFORM}")
|
||||
set(ANDROID_CPU_ARCH arm64-v8a)
|
||||
elseif(ANDROID_ABI MATCHES x86_64)
|
||||
message("-- Building for Android x86_64")
|
||||
message("-- Building for Android x86_64 on API level ${ANDROID_PLATFORM}")
|
||||
set(ANDROID_CPU_ARCH x86_64)
|
||||
else()
|
||||
message(FATAL_ERROR "-- Unsupported Android ABI: " ${ANDROID_ABI})
|
||||
|
|
Loading…
Reference in a new issue