1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/Tabs/Package.swift

35 lines
780 B
Swift
Raw Normal View History

2020-11-22 13:41:33 +03:00
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
2020-12-06 12:55:20 +03:00
name: "Tabs",
2020-11-22 17:03:37 +03:00
platforms: [.macOS(.v10_13)],
2020-11-22 13:41:33 +03:00
products: [
2020-11-28 17:58:12 +03:00
.library(name: "Tabs", targets: ["Tabs"]),
2020-11-22 13:41:33 +03:00
],
dependencies: [
2020-11-28 17:58:12 +03:00
.package(
name: "MaterialIcons",
url: "https://github.com/qvacua/material-icons",
.upToNextMinor(from: "0.1.0")
),
2020-11-22 17:03:37 +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-11-22 17:03:37 +03:00
),
2020-11-22 13:41:33 +03:00
],
targets: [
.target(
name: "Tabs",
2020-11-22 17:03:37 +03:00
dependencies: ["PureLayout", "MaterialIcons"]
2020-11-22 13:41:33 +03:00
),
.testTarget(
name: "TabsTests",
dependencies: ["Tabs"]
),
]
)