Skip to content

Commit 0e5da84

Browse files
enekomats-claassen
andauthored
Add support for distribution via Swift Package Manager (SwiftPM) (#1073)
* Add Package.swift for distribution via SwiftPM * Update publicHeadersPath * Remove publicHeadersPath * Flattened file structure * Update project references * Clean up * Update README with instructions for installing via SwiftPM * Fix typo Co-authored-by: Mathias Claassen <[email protected]> Co-authored-by: Mathias Claassen <[email protected]>
1 parent 3dd39ed commit 0e5da84

File tree

78 files changed

+352
-307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+352
-307
lines changed

Package.swift

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.2
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "XLForm",
6+
platforms: [
7+
.iOS(.v9)
8+
],
9+
products: [
10+
.library(name: "XLForm", targets: ["XLForm"])
11+
],
12+
dependencies: [],
13+
targets: [
14+
.target(
15+
name: "XLForm",
16+
dependencies: [],
17+
path: "XLForm",
18+
publicHeadersPath: "XL"
19+
)
20+
]
21+
)

README.md

+23-1

XLForm.xcodeproj/project.pbxproj

+308-306
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)