2020-08-21 09:59:40 +03:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Workspace",
|
|
|
|
platforms: [.macOS(.v10_13)],
|
|
|
|
products: [
|
|
|
|
.library(name: "Workspace", targets: ["Workspace"]),
|
|
|
|
],
|
|
|
|
dependencies: [
|
2020-09-18 17:06:41 +03:00
|
|
|
.package(
|
|
|
|
name: "PureLayout",
|
|
|
|
url: "https://github.com/PureLayout/PureLayout",
|
2021-06-18 09:06:38 +03:00
|
|
|
.upToNextMinor(from: "3.1.9")
|
2020-09-18 17:06:41 +03:00
|
|
|
),
|
|
|
|
.package(
|
|
|
|
name: "MaterialIcons",
|
|
|
|
url: "https://github.com/qvacua/material-icons",
|
|
|
|
.upToNextMinor(from: "0.1.0")
|
|
|
|
),
|
2020-08-21 09:59:40 +03:00
|
|
|
.package(path: "../Commons"),
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Workspace",
|
|
|
|
dependencies: ["PureLayout", "MaterialIcons", "Commons"]
|
|
|
|
),
|
|
|
|
.testTarget(
|
|
|
|
name: "WorkspaceTests",
|
|
|
|
dependencies: ["Workspace"]
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|