Skip to content

Commit

Permalink
Move debug to its own library
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 authored Feb 24, 2022
1 parent 02693e4 commit b701096
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Package.swift.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ let package = Package(
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "libpebblecommon",
targets: ["libpebblecommon-debug", "libpebblecommon-release"])
targets: ["libpebblecommon-release"]),
.library(
name: "libpebblecommon-debug",
targets: ["libpebblecommon-debug"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -26,4 +29,4 @@ let package = Package(
checksum: "RELEASE-CHECKSUM"
)
]
)
)

0 comments on commit b701096

Please sign in to comment.