Files
yoga/Package.swift

33 lines
737 B
Swift
Raw Normal View History

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: [
2020-10-09 00:38:00 +02:00
.iOS(.v11),
2020-10-09 00:00:39 +02:00
],
2020-10-07 22:06:51 +02:00
products: [
.library(
name: "yoga",
targets: ["yoga"]
2020-10-09 00:00:39 +02:00
),
2020-10-07 22:06:51 +02:00
],
targets: [
.target(
name: "yoga",
dependencies: [],
2020-10-09 00:00:39 +02:00
path: "./yoga",
2020-10-09 11:19:13 +02:00
publicHeadersPath: "./apple-public",
2020-10-09 00:00:39 +02:00
cxxSettings: [
.headerSearchPath("../"),
],
linkerSettings: [
.linkedFramework("Foundation"),
]
)
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
)