mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
31 lines
708 B
Swift
31 lines
708 B
Swift
// swift-tools-version:5.7
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Workspace",
|
|
platforms: [.macOS(.v13)],
|
|
products: [
|
|
.library(name: "Workspace", targets: ["Workspace"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/PureLayout/PureLayout", from: "3.1.9"),
|
|
.package(url: "https://github.com/qvacua/material-icons", from: "0.1.0"),
|
|
.package(path: "../Commons"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Workspace",
|
|
dependencies: [
|
|
"PureLayout",
|
|
.product(name: "MaterialIcons", package: "material-icons"),
|
|
"Commons",
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "WorkspaceTests",
|
|
dependencies: ["Workspace"]
|
|
),
|
|
]
|
|
)
|