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

Commit

Permalink
Add the package manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
woxtu committed Dec 5, 2020
1 parent b6be677 commit 3f8d9ca
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "PinpointKit",
platforms: [
.iOS(.v9),
],
products: [
.library(
name: "PinpointKit",
targets: ["PinpointKit"]
),
],
dependencies: [],
targets: [
.target(
name: "ASLLogger",
dependencies: [],
path: "PinpointKit/PinpointKit/Sources/ASLLogger",
publicHeadersPath: "."
),
.target(
name: "PinpointKit",
dependencies: [
"ASLLogger",
],
path: "PinpointKit/PinpointKit",
exclude: [
"Info.plist",
"Sources/ASLLogger",
"Sources/Core/ASLLogger.h",
"Sources/Core/ASLLogger.m",
"Sources/Core/SourceSansPro-Semibold.ttf",
"Sources/Core/SourceSansPro-Bold.ttf",
"Sources/Core/SourceSansPro-Regular.ttf",
],
resources: [
.copy("Resources/SourceSansPro-Semibold.ttf"),
.copy("Resources/SourceSansPro-Regular.ttf"),
.copy("Resources/SourceSansPro-Bold.ttf"),
]
),
]
)

0 comments on commit 3f8d9ca

Please sign in to comment.