Hi guys!
I need to add the following build settings option:
EXCLUDED_ARCHS[sdk=iphonesimulator*]=arm64
I tried using the following option:
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "IndomioCore",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "IndomioCore",
targets: ["IndomioCore"])
],
dependencies: [
.package(name: "IndomioCommons", path: "../IndomioCommons"),
],
targets: [
.target(
name: "IndomioCore",
dependencies: [
.product(name: "IndomioCommons", package: "IndomioCommons"),
],
swiftSettings: [
.define("EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64")
]
)
]
)
but it does not work, it does not appear. What I'm missing?
Thanks