| 123456789101112131415161718192021222324252627282930313233 |
- // swift-tools-version: 5.9
- import PackageDescription
- let package = Package(
- name: "CapabilityPush",
- platforms: [
- .iOS(.v15)
- ],
- products: [
- .library(
- name: "CapabilityPush",
- targets: ["CapabilityPush"]
- )
- ],
- dependencies: [
- // 依赖 BaseCore(本地路径)
- .package(path: "../BaseCore")
- ],
- targets: [
- .target(
- name: "CapabilityPush",
- dependencies: [
- .product(name: "BaseCore", package: "BaseCore")
- ]
- ),
- .testTarget(
- name: "CapabilityPushTests",
- dependencies: ["CapabilityPush"],
- path: "Tests/CapabilityPushTests"
- )
- ]
- )
|