Files
yoga/Package.swift
Jonas Salling 71e687335c init
2020-10-07 22:06:51 +02:00

37 lines
676 B
Swift

// 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",
publicHeadersPath: "./yoga",
cxxSettings: [
.headerSearchPath("../"),
.unsafeFlags([
"-fno-omit-frame-pointer",
"-fexceptions",
"-Wall",
"-Werror",
"-std=c++1y",
"-fPIC",
])
]
)
]
)