mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
27 lines
710 B
Swift
27 lines
710 B
Swift
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Workspace",
|
|
platforms: [.macOS(.v10_13)],
|
|
products: [
|
|
.library(name: "Workspace", targets: ["Workspace"]),
|
|
],
|
|
dependencies: [
|
|
.package(name: "PureLayout", url: "https://github.com/PureLayout/PureLayout", .upToNextMinor(from: "3.1.6")),
|
|
.package(name: "MaterialIcons", url: "https://github.com/qvacua/material-icons", .upToNextMinor(from: "0.1.0")),
|
|
.package(path: "../Commons"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Workspace",
|
|
dependencies: ["PureLayout", "MaterialIcons", "Commons"]
|
|
),
|
|
.testTarget(
|
|
name: "WorkspaceTests",
|
|
dependencies: ["Workspace"]
|
|
),
|
|
]
|
|
)
|