forked from winstondu/PinCodeInputView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
28 lines (27 loc) · 806 Bytes
/
Package.swift
File metadata and controls
28 lines (27 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "PinCodeInputView",
platforms: [
.iOS(.v12),
],
products: [
.library(
name: "PinCodeInputView",
targets: ["PinCodeInputView"]
),
],
dependencies: [
// Add dependencies if necessary
],
targets: [
.target(
name: "PinCodeInputView",
path: "PinCodeInputView", // Update to reflect the correct path to your source files
exclude: [], // Exclude unnecessary files if needed
sources: ["**/*.{swift,m,h}"],
publicHeadersPath: nil // Set if there are Objective-C headers, otherwise leave as nil
),
],
swiftLanguageVersions: [.v5] // Updated for Swift 5
)