Add Tuist setup for XCFramework generation#807
Open
pepicrft wants to merge 1 commit intoOpenSwiftUIProject:mainfrom
Open
Add Tuist setup for XCFramework generation#807pepicrft wants to merge 1 commit intoOpenSwiftUIProject:mainfrom
pepicrft wants to merge 1 commit intoOpenSwiftUIProject:mainfrom
Conversation
Add Tuist manifests (Project.swift, Tuist.swift, Tuist/Package.swift) to enable building OpenSwiftUI as an XCFramework using xcodebuild. This includes module maps for COpenSwiftUI and OpenSwiftUISymbolDualTestsSupport, a package typealias to resolve ORBPath module ambiguity in Xcode, and conditional compilation guards for BacklightServices-dependent code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey! I'm Pedro, co-founder of Tuist. I've been looking at OpenSwiftUI and thought it'd be useful to have a Tuist-based setup for producing XCFrameworks via xcodebuild, without relying solely on SPM.
This adds Tuist project manifests with a
Project.swiftcovering all the existing targets (OpenSwiftUI, OpenSwiftUICore, OpenSwiftUI_SPI, COpenSwiftUI, OpenSwiftUIMacros, OpenSwiftUIExtension, OpenSwiftUIBridge, OpenSwiftUISymbolDualTestsSupport), aTuist/Package.swiftfor external dependency resolution, and anavailability-macros.xcconfigfor the availability macro flags. I also added module maps for COpenSwiftUI and OpenSwiftUISymbolDualTestsSupport since Xcode needs them for module discovery, a package typealias inPath.swiftto resolve an ORBPath ambiguity that arises from Xcode's transitive header search path propagation, and conditional compilation guards around BacklightServices-dependent code in the UIKit hosting views.I've verified the build succeeds for macOS, iOS device, and iOS Simulator in both Debug and Release configurations, and successfully produced an XCFramework with
xcodebuild -create-xcframework.