Skip to content

Commit 4ee526b

Browse files
[3806] add Swift Package Manager support
1 parent c60fae7 commit 4ee526b

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Package.swift

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// swift-tools-version:5.7
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "AXStateButton",
6+
platforms: [
7+
.iOS(.v14)
8+
],
9+
products: [
10+
.library(
11+
name: "AXStateButton",
12+
targets: ["AXStateButton"])
13+
],
14+
dependencies: [],
15+
targets: [
16+
.target(
17+
name: "AXStateButton",
18+
dependencies: [],
19+
path: "Source",
20+
publicHeadersPath: "include",
21+
cSettings: [
22+
.headerSearchPath("."),
23+
]
24+
)
25+
]
26+
)

0 commit comments

Comments
 (0)