mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03: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)
|