-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
66 lines (65 loc) · 1.81 KB
/
Copy pathPackage.swift
File metadata and controls
66 lines (65 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// swift-tools-version:5.9
//
// LucideSwift — Vector-first, type-safe Swift package for Lucide Icons
//
// Package URL: https://github.com/ajaxjiang96/lucide-swift.git
// Keywords: swiftui, icons, lucide, svg, vector-graphics, shapes,
// icon-library, swift, ios, macos
// Platforms: iOS 14+, macOS 11+, tvOS 14+, watchOS 7+, visionOS 1+
// License: ISC
// Upstream: https://lucide.dev | https://github.com/lucide-icons/lucide
//
import PackageDescription
let package = Package(
name: "LucideSwift",
platforms: [
.iOS(.v14),
.macOS(.v11),
.tvOS(.v14),
.watchOS(.v7),
.visionOS(.v1)
],
products: [
.library(
name: "LucideSwift",
targets: ["LucideSwift"]
),
.executable(
name: "LucideGenerator",
targets: ["LucideGenerator"]
),
.executable(
name: "PreviewGenerator",
targets: ["PreviewGenerator"]
)
],
dependencies: [
// Using local patched copy with fix for relative move (m) command
// See PatchedDependencies/SVGPath for details
.package(path: "PatchedDependencies/SVGPath")
],
targets: [
.target(
name: "LucideSwift",
dependencies: []
),
.testTarget(
name: "LucideSwiftTests",
dependencies: ["LucideSwift"]
),
.testTarget(
name: "LucideGeneratorTests",
dependencies: ["LucideGenerator"]
),
.executableTarget(
name: "LucideGenerator",
dependencies: [
.product(name: "SVGPath", package: "SVGPath")
]
),
.executableTarget(
name: "PreviewGenerator",
dependencies: ["LucideSwift"]
),
]
)