Skip to content

Commit

Permalink
Add Swift Package Manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
ffittschen committed Mar 4, 2021
1 parent 0fca711 commit 791fd4c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ doxygenWarnings.txt
*.xccheckout

DerivedData/
.swiftpm/
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "Toaster",
products: [
.library(
name: "Toaster",
targets: ["Toaster"]
),
],
targets: [
.target(
name: "Toaster",
path: "Sources"
),
.testTarget(
name: "ToasterTests",
dependencies: ["Toaster"],
path: "ToasterTests"
),
]
)
2 changes: 1 addition & 1 deletion Sources/UIApplication+Load.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

import Foundation
import UIKit

extension UIApplication {

Expand Down

0 comments on commit 791fd4c

Please sign in to comment.