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

Commit

Permalink
Merge pull request #43 from nodes-ios/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Jakob Mygind authored Sep 16, 2019
2 parents e9f95b9 + 840aba9 commit 74d7814
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// 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: "Spinner",
platforms: [
.iOS(.v9)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Spinner",
targets: ["Spinner"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "Spinner",
dependencies: []),
.testTarget(
name: "SpinnerTests",
dependencies: ["Spinner"],
path: "SpinnerTests"),
]
)
1 change: 1 addition & 0 deletions Sources/Spinner/Spinner.swift

0 comments on commit 74d7814

Please sign in to comment.