29 lines
594 B
Swift
29 lines
594 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Shared",
|
|
platforms: [
|
|
.macOS(.v10_11),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Shared",
|
|
targets: ["Shared"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../vChewing_CocoaExtension"),
|
|
.package(path: "../vChewing_SwiftExtension"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Shared",
|
|
dependencies: [
|
|
.product(name: "CocoaExtension", package: "vChewing_CocoaExtension"),
|
|
.product(name: "SwiftExtension", package: "vChewing_SwiftExtension"),
|
|
]
|
|
),
|
|
]
|
|
)
|