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

SPM support #23

Merged
merged 1 commit into from
Jun 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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