almost signing ios
This commit is contained in:
30
fpc/apple/fpcxtool/Package.swift
Normal file
30
fpc/apple/fpcxtool/Package.swift
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
// 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"
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user