Skip to content

Commit

Permalink
Create Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
relatedcode committed Sep 22, 2023
1 parent 166403e commit 3eff764
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "PasscodeKit",
platforms: [
.iOS(.v13),
],
products: [
.library(
name: "PasscodeKit",
type: .static,
targets: ["PasscodeKit"]),
],
targets: [
.target(
name: "PasscodeKit",
dependencies: [],
path: "./PasscodeKit",
sources: ["Sources"]
),
]
)

0 comments on commit 3eff764

Please sign in to comment.