mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 05:38:24 -05:00
15f6606abd
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)
|