0e5da84980
* 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 <mathiasclaassen7@gmail.com> Co-authored-by: Mathias Claassen <mathiasclaassen7@gmail.com>
22 lines
410 B
Swift
22 lines
410 B
Swift
// swift-tools-version:5.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "XLForm",
|
|
platforms: [
|
|
.iOS(.v9)
|
|
],
|
|
products: [
|
|
.library(name: "XLForm", targets: ["XLForm"])
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "XLForm",
|
|
dependencies: [],
|
|
path: "XLForm",
|
|
publicHeadersPath: "XL"
|
|
)
|
|
]
|
|
)
|