235 lines
5.6 KiB
Swift
235 lines
5.6 KiB
Swift
// swift-tools-version:5.6
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Tokamak",
|
|
platforms: [
|
|
.macOS(.v11),
|
|
.iOS(.v13),
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries produced by a package,
|
|
// and make them visible to other packages.
|
|
.executable(
|
|
name: "TokamakDemo",
|
|
targets: ["TokamakDemo"]
|
|
),
|
|
.library(
|
|
name: "TokamakDOM",
|
|
targets: ["TokamakDOM"]
|
|
),
|
|
.library(
|
|
name: "TokamakStaticHTML",
|
|
targets: ["TokamakStaticHTML"]
|
|
),
|
|
.executable(
|
|
name: "TokamakStaticHTMLDemo",
|
|
targets: ["TokamakStaticHTMLDemo"]
|
|
),
|
|
.library(
|
|
name: "TokamakGTK",
|
|
targets: ["TokamakGTK"]
|
|
),
|
|
.executable(
|
|
name: "TokamakGTKDemo",
|
|
targets: ["TokamakGTKDemo"]
|
|
),
|
|
.library(
|
|
name: "TokamakShim",
|
|
targets: ["TokamakShim"]
|
|
),
|
|
.executable(
|
|
name: "TokamakStaticHTMLBenchmark",
|
|
targets: ["TokamakStaticHTMLBenchmark"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(
|
|
url: "https://github.com/swiftwasm/JavaScriptKit.git",
|
|
from: "0.15.0"
|
|
),
|
|
.package(
|
|
url: "https://github.com/OpenCombine/OpenCombine.git",
|
|
from: "0.12.0"
|
|
),
|
|
.package(
|
|
url: "https://github.com/swiftwasm/OpenCombineJS.git",
|
|
from: "0.2.0"
|
|
),
|
|
.package(
|
|
url: "https://github.com/google/swift-benchmark",
|
|
from: "0.1.2"
|
|
),
|
|
.package(
|
|
url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
|
|
from: "1.9.0"
|
|
),
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package. A target can define
|
|
// a module or a test suite.
|
|
// Targets can depend on other targets in this package, and on products
|
|
// in packages which this package depends on.
|
|
.target(
|
|
name: "TokamakCore",
|
|
dependencies: [
|
|
.product(
|
|
name: "OpenCombineShim",
|
|
package: "OpenCombine"
|
|
),
|
|
]
|
|
),
|
|
.target(
|
|
name: "TokamakShim",
|
|
dependencies: [
|
|
.target(name: "TokamakDOM", condition: .when(platforms: [.wasi])),
|
|
.target(name: "TokamakGTK", condition: .when(platforms: [.linux])),
|
|
]
|
|
),
|
|
.systemLibrary(
|
|
name: "CGTK",
|
|
pkgConfig: "gtk+-3.0",
|
|
providers: [
|
|
.apt(["libgtk+-3.0", "gtk+-3.0"]),
|
|
// .yum(["gtk3-devel"]),
|
|
.brew(["gtk+3"]),
|
|
]
|
|
),
|
|
.systemLibrary(
|
|
name: "CGDK",
|
|
pkgConfig: "gdk-3.0",
|
|
providers: [
|
|
.apt(["libgtk+-3.0", "gtk+-3.0"]),
|
|
// .yum(["gtk3-devel"]),
|
|
.brew(["gtk+3"]),
|
|
]
|
|
),
|
|
.target(
|
|
name: "TokamakGTKCHelpers",
|
|
dependencies: ["CGTK"]
|
|
),
|
|
.target(
|
|
name: "TokamakGTK",
|
|
dependencies: [
|
|
"TokamakCore", "CGTK", "CGDK", "TokamakGTKCHelpers",
|
|
.product(
|
|
name: "OpenCombineShim",
|
|
package: "OpenCombine"
|
|
),
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "TokamakGTKDemo",
|
|
dependencies: ["TokamakGTK"],
|
|
resources: [.copy("logo-header.png")]
|
|
),
|
|
.target(
|
|
name: "TokamakStaticHTML",
|
|
dependencies: [
|
|
"TokamakCore",
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "TokamakCoreBenchmark",
|
|
dependencies: [
|
|
.product(name: "Benchmark", package: "swift-benchmark"),
|
|
"TokamakCore",
|
|
"TokamakTestRenderer",
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "TokamakStaticHTMLBenchmark",
|
|
dependencies: [
|
|
.product(name: "Benchmark", package: "swift-benchmark"),
|
|
"TokamakStaticHTML",
|
|
]
|
|
),
|
|
.target(
|
|
name: "TokamakDOM",
|
|
dependencies: [
|
|
"TokamakCore",
|
|
"TokamakStaticHTML",
|
|
.product(
|
|
name: "OpenCombineShim",
|
|
package: "OpenCombine"
|
|
),
|
|
.product(
|
|
name: "JavaScriptKit",
|
|
package: "JavaScriptKit",
|
|
condition: .when(platforms: [.wasi])
|
|
),
|
|
.product(
|
|
name: "JavaScriptEventLoop",
|
|
package: "JavaScriptKit",
|
|
condition: .when(platforms: [.wasi])
|
|
),
|
|
"OpenCombineJS",
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "TokamakDemo",
|
|
dependencies: [
|
|
"TokamakShim",
|
|
.product(
|
|
name: "JavaScriptKit",
|
|
package: "JavaScriptKit",
|
|
condition: .when(platforms: [.wasi])
|
|
),
|
|
],
|
|
resources: [.copy("logo-header.png")],
|
|
linkerSettings: [
|
|
.unsafeFlags(
|
|
["-Xlinker", "--stack-first", "-Xlinker", "-z", "-Xlinker", "stack-size=16777216"],
|
|
.when(platforms: [.wasi])
|
|
),
|
|
]
|
|
),
|
|
.executableTarget(
|
|
name: "TokamakStaticHTMLDemo",
|
|
dependencies: [
|
|
"TokamakStaticHTML",
|
|
]
|
|
),
|
|
.target(
|
|
name: "TokamakTestRenderer",
|
|
dependencies: ["TokamakCore"]
|
|
),
|
|
.testTarget(
|
|
name: "TokamakLayoutTests",
|
|
dependencies: [
|
|
"TokamakCore",
|
|
"TokamakStaticHTML",
|
|
.product(
|
|
name: "SnapshotTesting",
|
|
package: "swift-snapshot-testing",
|
|
condition: .when(platforms: [.macOS])
|
|
),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "TokamakReconcilerTests",
|
|
dependencies: [
|
|
"TokamakCore",
|
|
"TokamakTestRenderer",
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "TokamakTests",
|
|
dependencies: ["TokamakTestRenderer"]
|
|
),
|
|
.testTarget(
|
|
name: "TokamakStaticHTMLTests",
|
|
dependencies: [
|
|
"TokamakStaticHTML",
|
|
.product(
|
|
name: "SnapshotTesting",
|
|
package: "swift-snapshot-testing",
|
|
condition: .when(platforms: [.macOS])
|
|
),
|
|
],
|
|
exclude: ["__Snapshots__", "RenderingTests/__Snapshots__"]
|
|
),
|
|
]
|
|
)
|