Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Fix #27 Catalyst support #34

Merged
merged 1 commit into from
Mar 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Sources/CreateXCFramework/ProjectGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ struct ProjectGenerator {
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
"""
)

if package.options.platform.contains(.maccatalyst) {
stream (
"""
SUPPORTS_MACCATALYST=YES
"""
)
}
}
}

Expand Down