Skip to content

Commit

Permalink
[3806] add Swift Package Manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmejiagrove authored Aug 2, 2023
1 parent c60fae7 commit 4ee526b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// swift-tools-version:5.7
import PackageDescription

let package = Package(
name: "AXStateButton",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "AXStateButton",
targets: ["AXStateButton"])
],
dependencies: [],
targets: [
.target(
name: "AXStateButton",
dependencies: [],
path: "Source",
publicHeadersPath: "include",
cSettings: [
.headerSearchPath("."),
]
)
]
)
File renamed without changes.

0 comments on commit 4ee526b

Please sign in to comment.