diff --git a/iOS.cmake b/iOS.cmake index 2e46671..6a5efdb 100644 --- a/iOS.cmake +++ b/iOS.cmake @@ -168,7 +168,7 @@ set (CMAKE_OSX_SYSROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Sysroot used for iOS su # set the architecture for iOS if (${IOS_PLATFORM} STREQUAL "OS") - set (IOS_ARCH armv7 armv7s arm64) + set (IOS_ARCH armv7 armv7s arm64 arm64e) elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR") set (IOS_ARCH i386) elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR64") diff --git a/iOSBuild.cmake b/iOSBuild.cmake index d74da2f..af7ccc5 100644 --- a/iOSBuild.cmake +++ b/iOSBuild.cmake @@ -92,7 +92,7 @@ if(G3_IOS_LIB) COMMAND ${CMAKE_COMMAND} --build ${ARM_BINARY_DIR} --config ${CMAKE_BUILD_TYPE} - COMMENT "Building for armv7, armv7s, arm64" + COMMENT "Building for armv7, armv7s, arm64, arm64e" VERBATIM )