Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Jul 11, 2024
1 parent 1a7a861 commit df9153b
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,21 @@ let testSupportVersion: Version = "0.1.0"
// from: testSupportVersion
// )
// )
package.targets.append(
"IssueReportingTestSupport"
)
#endif

for target in package.targets {
if target.name == "IssueReporting" {
// #if os(macOS)
#if os(macOS)
target.dependencies.append("IssueReportingTestSupport")
#else
// target.dependencies.append(
// .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting-support")
// )
target.dependencies.append("IssueReportingTestSupport")
// #else
// target.dependencies.append(
// .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting-support")
// )
// #endif
#endif
}
}

Expand Down

0 comments on commit df9153b

Please sign in to comment.