Skip to content

Commit 8156ce4

Browse files
committed
Add Package.swift
1 parent ef60d0c commit 8156ce4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Package.swift

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// swift-tools-version:5.0
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "SubtleVolume",
6+
products: [
7+
.library(
8+
name: "SubtleVolume",
9+
targets: ["SubtleVolume"])
10+
],
11+
targets: [
12+
.target(
13+
name: "SubtleVolume",
14+
path: "Source")
15+
]
16+
)

0 commit comments

Comments
 (0)