Skip to content

Commit 18b2878

Browse files
author
Jason Rodriguez
committed
Adds package.swift
1 parent adfdba9 commit 18b2878

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Package.swift

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "LTHPasscodeViewController",
6+
platforms: [
7+
.iOS(.v10)
8+
],
9+
products: [
10+
.library(
11+
name: "LTHPasscodeViewController",
12+
targets: ["LTHPasscodeViewController"]
13+
),
14+
],
15+
targets: [
16+
.target(
17+
name: "LTHPasscodeViewController",
18+
path: ".",
19+
exclude: ["Demo", "CHANGELOG.md", "LICENSE.txt", "README.md"],
20+
sources: ["LTHPasscodeViewController/LTHKeychainUtils.h", "LTHPasscodeViewController/LTHKeychainUtils.m", "LTHPasscodeViewController/LTHPasscodeViewController.h", "LTHPasscodeViewController/LTHPasscodeViewController.m"],
21+
resources: [.copy("Localizations")],
22+
publicHeadersPath: "LTHPasscodeViewController"
23+
)
24+
]
25+
)

0 commit comments

Comments
 (0)