Skip to content

Commit 0022e29

Browse files
authored
Add a temporary package product that builds our cross-import overlays. (#1197)
This PR adds a **temporary** product to our package that builds the cross-import overlay targets needed for image attachment support. This allows developers to try out this new code. This product will be removed from the package in a future update. ### Checklist: - [x] Code and documentation should follow the style of the [Style Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md). - [x] If public symbols are renamed or modified, DocC references should be updated.
1 parent fab283a commit 0022e29

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Package.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ let package = Package(
8484
)
8585
#endif
8686

87+
result += [
88+
.library(
89+
name: "_Testing_ExperimentalImageAttachments",
90+
targets: [
91+
"_Testing_AppKit",
92+
"_Testing_CoreGraphics",
93+
]
94+
)
95+
]
96+
8797
result.append(
8898
.library(
8999
name: "_TestDiscovery",

0 commit comments

Comments
 (0)