Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

SPM support #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "SHPKeyboardAwareness",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "SHPKeyboardAwareness",
targets: ["SHPKeyboardAwareness"]),
],
dependencies: [
],
targets: [
.target(
name: "SHPKeyboardAwareness",
dependencies: [],
path: ".",
sources: ["Source"],
publicHeadersPath: "Source"
)
]
)