Skip to content

Commit

Permalink
Added Swift Package Manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
gcharita committed Sep 13, 2019
1 parent b4235ef commit b9dbc1f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version:5.0

import PackageDescription

let package = Package(
name: "Cosmos",
platforms: [
.iOS(.v8),
.tvOS(.v9),
],
products: [
.library(name: "Cosmos", targets: ["Cosmos"]),
],
targets: [
.target(name: "Cosmos", path: "./Cosmos"),
.testTarget(name: "CosmosTests", dependencies: ["Cosmos"], path: "./CosmosTests"),
],
swiftLanguageVersions: [
.v4_2,
.v5,
]
)

0 comments on commit b9dbc1f

Please sign in to comment.