mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
26 lines
578 B
Swift
26 lines
578 B
Swift
// swift-tools-version:5.6
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Commons",
|
|
platforms: [.macOS(.v10_13)],
|
|
products: [
|
|
.library(name: "Commons", targets: ["Commons", "CommonsObjC"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/Quick/Nimble", from: "10.0.0"),
|
|
],
|
|
targets: [
|
|
.target(name: "Commons", dependencies: []),
|
|
.target(name: "CommonsObjC", dependencies: []),
|
|
.testTarget(
|
|
name: "CommonsTests",
|
|
dependencies: ["Commons", "Nimble"],
|
|
resources: [
|
|
.copy("Resources"),
|
|
]
|
|
),
|
|
]
|
|
)
|