Files
yoga/Package.swift
Jonas Salling 8e8a4c901c init 2
2020-10-07 22:42:25 +02:00

38 lines
727 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",
// ])
]
)
],
cxxLanguageStandard: .cxx11
)