mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-04-23 22:30:04 +08:00
15 lines
417 B
CMake
15 lines
417 B
CMake
if (NOT DRACO_CMAKE_TOOLCHAINS_ARM64_IOS_CMAKE_)
|
|
set(DRACO_CMAKE_TOOLCHAINS_ARM64_IOS_CMAKE_ 1)
|
|
|
|
if (XCODE)
|
|
# TODO(tomfinegan): Handle arm builds in Xcode.
|
|
message(FATAL_ERROR "This toolchain does not support Xcode.")
|
|
endif ()
|
|
|
|
set(CMAKE_SYSTEM_PROCESSOR "arm64")
|
|
set(CMAKE_OSX_ARCHITECTURES "arm64")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/arm-ios-common.cmake")
|
|
|
|
endif () # DRACO_CMAKE_TOOLCHAINS_ARM64_IOS_CMAKE_
|