2020-10-07 22:06:51 +02:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "yoga",
|
|
|
|
platforms: [
|
|
|
|
.iOS(.v14),
|
|
|
|
],
|
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "yoga",
|
|
|
|
targets: ["yoga"]
|
|
|
|
),
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "yoga",
|
|
|
|
dependencies: [],
|
|
|
|
path: "./yoga",
|
|
|
|
cxxSettings: [
|
|
|
|
.headerSearchPath("../"),
|
2020-10-08 16:09:53 +02:00
|
|
|
],
|
2020-10-08 20:33:54 +02:00
|
|
|
linkerSettings: [
|
|
|
|
.linkedFramework("Foundation"),
|
|
|
|
]
|
2020-10-07 22:06:51 +02:00
|
|
|
)
|
2020-10-07 22:42:25 +02:00
|
|
|
],
|
2020-10-08 16:09:53 +02:00
|
|
|
cxxLanguageStandard: .cxx14
|
2020-10-07 22:06:51 +02:00
|
|
|
)
|