Skip to content

Commit df9153b

Browse files
committed
wip
1 parent 1a7a861 commit df9153b

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

Package.swift

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,21 @@ let testSupportVersion: Version = "0.1.0"
5050
// from: testSupportVersion
5151
// )
5252
// )
53+
package.targets.append(
54+
"IssueReportingTestSupport"
55+
)
5356
#endif
5457

5558
for target in package.targets {
5659
if target.name == "IssueReporting" {
57-
// #if os(macOS)
60+
#if os(macOS)
61+
target.dependencies.append("IssueReportingTestSupport")
62+
#else
63+
// target.dependencies.append(
64+
// .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting-support")
65+
// )
5866
target.dependencies.append("IssueReportingTestSupport")
59-
// #else
60-
// target.dependencies.append(
61-
// .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting-support")
62-
// )
63-
// #endif
67+
#endif
6468
}
6569
}
6670

0 commit comments

Comments
 (0)