1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
// swift-tools-version:5.8
import PackageDescription
import class Foundation.ProcessInfo
let package = Package(
name: "WasmKit",
platforms: [.macOS(.v12)],
products: [
.library(
name: "WasmKit",
targets: ["WasmKit"]
),
.library(
name: "WASI",
targets: ["WASI"]
),
.library(
name: "WIT", targets: ["WIT"]
),
.executable(
name: "wasmkit-cli",
targets: ["CLI"]
),
.library(name: "_CabiShims", targets: ["_CabiShims"]),
.plugin(name: "WITOverlayPlugin", targets: ["WITOverlayPlugin"]),
.plugin(name: "WITExtractorPlugin", targets: ["WITExtractorPlugin"]),
],
targets: [
.executableTarget(
name: "CLI",
dependencies: [
"WasmKit",
"WASI",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SystemPackage", package: "swift-system"),
]
),
.target(
name: "WasmKit",
dependencies: [
"SystemExtras",
.product(name: "SystemPackage", package: "swift-system"),
]
),
.target(
name: "WASI",
dependencies: ["WasmKit", "SystemExtras"]
),
.target(
name: "SystemExtras",
dependencies: [
.product(name: "SystemPackage", package: "swift-system")
]),
.executableTarget(
name: "Spectest",
dependencies: [
"WasmKit",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SystemPackage", package: "swift-system"),
]
),
.target(name: "WIT"),
.testTarget(name: "WITTests", dependencies: ["WIT"]),
.target(name: "WITOverlayGenerator", dependencies: ["WIT"]),
.target(name: "_CabiShims"),
.plugin(name: "WITOverlayPlugin", capability: .buildTool(), dependencies: ["WITTool"]),
.plugin(name: "GenerateOverlayForTesting", capability: .buildTool(), dependencies: ["WITTool"]),
.testTarget(
name: "WITOverlayGeneratorTests",
dependencies: ["WITOverlayGenerator", "WasmKit", "WASI"],
exclude: ["Fixtures", "Compiled", "Generated"],
plugins: [.plugin(name: "GenerateOverlayForTesting")]
),
.target(name: "WITExtractor"),
.testTarget(
name: "WITExtractorTests",
dependencies: ["WITExtractor", "WIT"]
),
.plugin(
name: "WITExtractorPlugin",
capability: .command(
intent: .custom(verb: "extract-wit", description: "Extract WIT definition from Swift module"),
permissions: []
),
dependencies: ["WITTool"]
),
.testTarget(
name: "WITExtractorPluginTests",
exclude: ["Fixtures"]
),
.executableTarget(
name: "WITTool",
dependencies: [
"WIT",
"WITOverlayGenerator",
"WITExtractor",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
name: "WasmKitTests",
dependencies: ["WasmKit"]
),
.testTarget(
name: "WASITests",
dependencies: ["WASI"]
),
],
swiftLanguageVersions: [.v5]
)
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
package.dependencies += [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.2"),
.package(url: "https://github.com/apple/swift-system", .upToNextMinor(from: "1.1.1")),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-format.git", from: "508.0.1"),
]
} else {
package.dependencies += [
.package(path: "../swift-argument-parser"),
.package(path: "../swift-system"),
]
}
|