-
|
Is there a temporary way to disable SKIP activity during Xcode build? Is there an easy way/switch which disables SKIP for a limited time? So far the only slight help I found is changing |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
We generally recommend using the "SKIP_ZERO" technique to enable/disable Skip conditionally. This is a simple flag in the With this technique, you can either turn Skip off by editing the value of the flag directly in the |
Beta Was this translation helpful? Give feedback.
We generally recommend using the "SKIP_ZERO" technique to enable/disable Skip conditionally. This is a simple flag in the
Package.swiftthat allows you to turn on and off the transpiler. You can see an example at https://github.com/skiptools/skipapp-hello/blob/main/Package.swiftWith this technique, you can either turn Skip off by editing the value of the flag directly in the
Package.swiftfile, or, if you want to do it on a per-process level, you can quit Xcode and then re-launch it with the environment set, like: