Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,11 @@ public void usesClassMethod(String cls, String method) {
} else {
new File(buildinRes, "MainWindowMETAL.xib").delete();
new File(buildinRes, "CodenameOne_METALViewController.xib").delete();
// The .metal shader file isn't guarded by an #ifdef like the
// companion .m files, so leaving it in the project forces Xcode
// to invoke the Metal toolchain — which Xcode 26 ships as a
// separately-downloaded component that build servers don't have.
new File(buildinRes, "CN1MetalShaders.metal").delete();
}


Expand Down
Loading