Skip to content

Commit

Permalink
SPM support
Browse files Browse the repository at this point in the history
  • Loading branch information
bguidolim committed Jan 14, 2021
1 parent 967d7d9 commit 5e71ed3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ profile
*.moved-aside
DerivedData
.idea/
.swiftpm

Carthage/

Expand Down
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
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SZMentionSwift",
platforms: [.iOS(.v10)],
products: [
.library(name: "SZMentionsSwift", targets: ["SZMentionsSwift"]),
],
targets: [
.target(
name: "SZMentionsSwift",
path: "Classes"
),
.testTarget(
name: "SZMentionsSwiftTests",
dependencies: ["SZMentionsSwift"],
path: "SZMentionsSwiftTests")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 5e71ed3

Please sign in to comment.