mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40:56 -06:00
This disallows the use of multiple values in `CMAKE_OSX_ARCHITECTURES` with Swift which does not support FAT compilation.
5 lines
136 B
CMake
5 lines
136 B
CMake
cmake_minimum_required(VERSION 3.15.1)
|
|
set(CMAKE_OSX_ARCHITECTURES "armv7;arm64;i386;x86_64")
|
|
project(SwiftMultiArch
|
|
LANGUAGES Swift)
|