mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
35 lines
780 B
Swift
35 lines
780 B
Swift
// 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(
|
|
name: "Tabs",
|
|
platforms: [.macOS(.v10_13)],
|
|
products: [
|
|
.library(name: "Tabs", targets: ["Tabs"]),
|
|
],
|
|
dependencies: [
|
|
.package(
|
|
name: "MaterialIcons",
|
|
url: "https://github.com/qvacua/material-icons",
|
|
.upToNextMinor(from: "0.1.0")
|
|
),
|
|
.package(
|
|
name: "PureLayout",
|
|
url: "https://github.com/PureLayout/PureLayout",
|
|
.upToNextMinor(from: "3.1.6")
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Tabs",
|
|
dependencies: ["PureLayout", "MaterialIcons"]
|
|
),
|
|
.testTarget(
|
|
name: "TabsTests",
|
|
dependencies: ["Tabs"]
|
|
),
|
|
]
|
|
)
|