Skip to content

Commit

Permalink
ref #98 - add Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
Menno Lovink committed Jan 29, 2020
1 parent 6c270e9 commit e8f5061
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ Carthage
# `pod install` in .travis.yml
#
# Pods/
.swiftpm
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.0

import PackageDescription

let package = Package(
name: "Marky-Mark",
platforms: [
.iOS("8.0"),
],
products: [
.library(
name: "markymark",
targets: ["markymark"]),
],
dependencies: [],
targets: [
.target(
name: "markymark",
dependencies: [],
path: "markymark"),
],
swiftLanguageVersions: [.v5]
)

0 comments on commit e8f5061

Please sign in to comment.