31 lines
606 B
Swift
31 lines
606 B
Swift
|
|
// swift-tools-version:6.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "fpcxtool",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "fpcxtool",
|
|
type: .static,
|
|
targets: ["fpcxtool"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/xtool-org/xtool", "1.16.1" ..< "1.17.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "fpcxtool",
|
|
dependencies: [
|
|
.product(name: "XKit", package: "xtool")
|
|
],
|
|
path: "swift"
|
|
)
|
|
]
|
|
)
|
|
|