27 lines
475 B
Swift
27 lines
475 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CocoaExtension",
|
|
platforms: [
|
|
.macOS(.v10_11)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "CocoaExtension",
|
|
targets: ["CocoaExtension"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(path: "../vChewing_IMKUtils")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "CocoaExtension",
|
|
dependencies: [
|
|
.product(name: "IMKUtils", package: "vChewing_IMKUtils")
|
|
]
|
|
)
|
|
]
|
|
)
|