mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 10:02:36 +03:00
25 lines
403 B
Swift
25 lines
403 B
Swift
|
// swift-tools-version:5.3
|
||
|
|
||
|
import PackageDescription
|
||
|
|
||
|
let package = Package(
|
||
|
name: "Commons",
|
||
|
platforms: [.macOS(.v10_13)],
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "Commons",
|
||
|
targets: ["Commons"]),
|
||
|
],
|
||
|
dependencies: [],
|
||
|
targets: [
|
||
|
.target(
|
||
|
name: "Commons",
|
||
|
dependencies: []
|
||
|
),
|
||
|
.testTarget(
|
||
|
name: "CommonsTests",
|
||
|
dependencies: ["Commons"]
|
||
|
),
|
||
|
]
|
||
|
)
|