Skip to content

Commit

Permalink
Add SwiftPM manifest and OS source guards (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbuenemann authored Sep 28, 2022
1 parent a2886e9 commit 4a4d1fa
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "Device",
platforms: [.iOS(.v9), .macOS(.v10_10)],
products: [
.library(
name: "Device",
targets: ["Device"]
)
],
targets: [
.target(
name: "Device",
path: "Source"
)
],
swiftLanguageVersions: [.v4, .v4_2, .v5]
)

0 comments on commit 4a4d1fa

Please sign in to comment.