Skip to content

Commit b701096

Browse files
authored
Move debug to its own library
1 parent 02693e4 commit b701096

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Package.swift.template

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ let package = Package(
99
// Products define the executables and libraries a package produces, and make them visible to other packages.
1010
.library(
1111
name: "libpebblecommon",
12-
targets: ["libpebblecommon-debug", "libpebblecommon-release"])
12+
targets: ["libpebblecommon-release"]),
13+
.library(
14+
name: "libpebblecommon-debug",
15+
targets: ["libpebblecommon-debug"])
1316
],
1417
dependencies: [
1518
// Dependencies declare other packages that this package depends on.
@@ -26,4 +29,4 @@ let package = Package(
2629
checksum: "RELEASE-CHECKSUM"
2730
)
2831
]
29-
)
32+
)

0 commit comments

Comments
 (0)