init
This commit is contained in:
36
Package.swift
Normal file
36
Package.swift
Normal file
@@ -0,0 +1,36 @@
|
||||
// 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",
|
||||
])
|
||||
]
|
||||
)
|
||||
]
|
||||
)
|
Reference in New Issue
Block a user