Skip to content
Merged
Show file tree
Hide file tree
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

This file was deleted.

7 changes: 0 additions & 7 deletions Example/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,3 @@ fi
run_mise install
run_mise exec -- tuist install
run_mise exec -- tuist generate --no-open

# Tuist currently injects Objective-C resource accessor headers into every
# C-family source through GCC_PREFIX_HEADER. Keep the generated header inert
# for plain C sources until Tuist scopes the injection to Objective-C sources.
# https://github.com/tuist/tuist/issues/12559
patch -d "$SCRIPT_DIR/.." -p1 < \
"$SCRIPT_DIR/Tuist/Patches/OpenSwiftUI_SPI-resource-bundle-accessor.patch"
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,8 @@ var sharedSwiftSettings: [SwiftSetting] = [
.define("OPENSWIFTUI_RELEASE_\(releaseVersion)"),
.unsafeFlags(["-Xfrontend", "-experimental-spi-only-imports"]),
// Swift 6.3.3 crashes while indexing AppKit with the private framework shims.
// Tuist used to duplicate unconditional settings into SDK-conditioned OTHER_SWIFT_FLAGS:
// https://github.com/tuist/tuist/issues/12377
// Fixed by https://github.com/tuist/tuist/pull/12411 in Tuist 4.206.0-canary.16.
// FIXME: Keep this unconditional until the project's Tuist version includes that fix.
.unsafeFlags(["-index-ignore-system-modules"]),
// Keep source indexing enabled while skipping imported system modules.
.unsafeFlags(["-index-ignore-system-modules"], .when(platforms: [.macOS])),
]

if releaseVersion >= 2021 {
Expand Down
2 changes: 1 addition & 1 deletion mise.compute.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tools]
tuist = "4.203.4"
tuist = "4.206.0"

[env]
TUIST_USE_SWIFTERPM=1
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tools]
tuist = "4.203.4"
tuist = "4.206.0"

[env]
TUIST_USE_SWIFTERPM=1
Expand Down
Loading