Skip to content

Commit

Permalink
add Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
ykrods committed Mar 26, 2020
1 parent 12050a9 commit 5654c03
Showing 1 changed file with 24 additions and 0 deletions.
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.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Spotlight",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "Spotlight",
targets: ["Spotlight"]),
],
dependencies: [
],
targets: [
.target(
name: "Spotlight",
dependencies: [],
path: "Spotlight/Sources"),
]
)

0 comments on commit 5654c03

Please sign in to comment.