Add Mac Catalyst Support to Lightway Core#208
Closed
kp-said-rehouni wants to merge 2 commits into
Closed
Conversation
Add build functions for Mac Catalyst with both x86_64 and arm64 architectures. The implementation includes: - build_maccatalyst_arm64(): Builds for Apple Silicon Macs - build_maccatalyst_x86_64(): Builds for Intel Macs - build_maccatalyst_universal_binary(): Creates universal binary - build_maccatalyst(): Orchestrates the complete build
5ef5262 to
f100bac
Compare
Update Xcode project settings and build scripts to support Mac Catalyst: - Set SUPPORTS_MACCATALYST=YES in project configuration - Add macosx to SUPPORTED_PLATFORMS - Update XCFramework build script to include Catalyst variant The XCFramework now includes iOS device, iOS simulator, and Mac Catalyst variants, enabling the framework to run on both iOS devices and macOS via Catalyst.
7fcb8fe to
330f117
Compare
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.
Description
This PR adds full Mac Catalyst support to Lightway Core, enabling iOS apps using the Lightway framework to run natively on macOS. The implementation includes build scripts and Xcode configuration for both Intel (x86_64) and Apple Silicon (arm64) Macs.
Types of changes
Checklist:
main