Skip to content

Commit a8853ed

Browse files
authored
Merge pull request #1 from fromkk/feature/package
add Package.swift
2 parents bb98bfa + 77eb3ea commit a8853ed

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Package.swift

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

0 commit comments

Comments
 (0)