Skip to content

Instantly share code, notes, and snippets.

@alexandre-g
Created October 6, 2022 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexandre-g/ce5067b3cf5b5b66b15a5d713f6485e6 to your computer and use it in GitHub Desktop.
Save alexandre-g/ce5067b3cf5b5b66b15a5d713f6485e6 to your computer and use it in GitHub Desktop.
Dependency package for Scipio
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Dependencies",
platforms: [
.iOS(.v13),
],
products: [],
dependencies: [
.package(url: "https://github.com/PSPDFKit/PSPDFKit-SP", exact: "11.5.2"),
],
targets: [
.target(
name: "Dependencies",
dependencies: [
.product(name: "PSPDFKit", package: "PSPDFKit-SP"),
]),
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment