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 #23 from nodes-ios/feature/SPMsupport
Browse files Browse the repository at this point in the history
SPM support
  • Loading branch information
BucekJiri authored Jun 25, 2019
2 parents a51930d + 850967c commit 323d0fb
Show file tree
Hide file tree
Showing 5 changed files with 36 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: "Noted",
platforms: [
.iOS(.v8)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Noted",
targets: ["Noted"]),
],
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: "Noted",
dependencies: []),
.testTarget(
name: "NotedTests",
dependencies: ["Noted"],
path: "NotedTests"),
]
)
1 change: 1 addition & 0 deletions Sources/Noted/NoteFilter.swift
1 change: 1 addition & 0 deletions Sources/Noted/NoteObserver.swift
1 change: 1 addition & 0 deletions Sources/Noted/NoteType.swift
1 change: 1 addition & 0 deletions Sources/Noted/Noted.swift

0 comments on commit 323d0fb

Please sign in to comment.