File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ playground.xcworkspace
3434
3535# Swift Package Manager
3636.build /
37+ .swiftpm /
3738
3839# Carthage
3940Carthage /Build
Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.0
2+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+ import PackageDescription
5+
6+ let package = Package (
7+ name: " SCLAlertView " ,
8+ platforms: [ . iOS( . v8) ] ,
9+ products: [
10+ . library( name: " SCLAlertView " , targets: [ " SCLAlertView " ] ) ,
11+ ] ,
12+ targets: [
13+ . target( name: " SCLAlertView " , path: " SCLAlertView " ) ,
14+ . testTarget(
15+ name: " SCLAlertViewTests " ,
16+ dependencies: [ " SCLAlertView " ] ,
17+ path: " SCLAlertViewTests "
18+ )
19+ ] ,
20+ swiftLanguageVersions: [ . v5]
21+ )
You can’t perform that action at this time.
0 commit comments