Skip to content

Commit

Permalink
Merge pull request #7 from RomanPodymov/master
Browse files Browse the repository at this point in the history
SPM
  • Loading branch information
podkovyrin authored Oct 18, 2022
2 parents d34af63 + 39ed9ae commit fe82ec1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "UIViewControllerKeyboardAdditions",
platforms: [
.iOS(.v9)
],
products: [
.library(
name: "UIViewControllerKeyboardAdditions",
targets: ["UIViewControllerKeyboardAdditions"])
],
targets: [
.target(
name: "UIViewControllerKeyboardAdditions",
dependencies: [],
path: "Pod",
sources: ["Classes"],
publicHeadersPath: "Classes",
cSettings: [
.headerSearchPath("Classes")
]
)
]
)

0 comments on commit fe82ec1

Please sign in to comment.