mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-23 01:54:31 +03:00
26 lines
607 B
Swift
26 lines
607 B
Swift
// swift-tools-version:5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Tabs",
|
|
platforms: [.macOS(.v12)],
|
|
products: [
|
|
.library(name: "Tabs", targets: ["Tabs"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/qvacua/material-icons", from: "0.1.0"),
|
|
.package(url: "https://github.com/PureLayout/PureLayout", from: "3.1.9"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Tabs",
|
|
dependencies: [
|
|
"PureLayout",
|
|
.product(name: "MaterialIcons", package: "material-icons"),
|
|
]
|
|
),
|
|
.testTarget(name: "TabsTests", dependencies: ["Tabs"]),
|
|
]
|
|
)
|