Skip to content

Commit

Permalink
Merge rollmind-spm into xcode11
Browse files Browse the repository at this point in the history
  • Loading branch information
cbpowell committed Jul 21, 2019
2 parents 756385a + f7ffea5 commit 01c8037
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ profile

# Excluse Carthage build artifacts
Carthage

# SPM
.build/
19 changes: 15 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
// swift-tools-version:4.0
// 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: "MarqueeLabel",
platforms: [
.iOS(.v8),
.tvOS(.v9)
],
products: [
.library(name: "MarqueeLabel", targets: ["MarqueeLabel"]),
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "MarqueeLabel",
targets: ["MarqueeLabel"]),
],
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: "MarqueeLabel",
path: "Sources"),
]
path: "Sources")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 01c8037

Please sign in to comment.