From a1aec00b24771a76746995b7a034226ed0ee1cf8 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Wed, 2 Jul 2025 15:34:52 -0400 Subject: [PATCH] Add a temporary package product that builds our cross-import overlays. 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. --- Package.swift | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Package.swift b/Package.swift index 5d08997e0..a4cf343ba 100644 --- a/Package.swift +++ b/Package.swift @@ -84,6 +84,16 @@ let package = Package( ) #endif + result += [ + .library( + name: "_Testing_ExperimentalImageAttachments", + targets: [ + "_Testing_AppKit", + "_Testing_CoreGraphics", + ] + ) + ] + result.append( .library( name: "_TestDiscovery",