We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be worth adding build instructions, so that anyone could try building the project?
Currently I have the following CLI command which will build an unsigned binary for local use:
xcodebuild -derivedDataPath ./build -project Quick\ Camera.xcodeproj -scheme "Quick Camera" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
or the following to include ARM, though I don't have access to an M1 Mac to validate:
xcodebuild -arch x86_64 -arch arm64 -derivedDataPath ./build -project Quick\ Camera.xcodeproj -scheme "Quick Camera" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
Was looking into the required CLI for use for continuous integration, but figured while at it creating some documentation could be useful.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would it be worth adding build instructions, so that anyone could try building the project?
Currently I have the following CLI command which will build an unsigned binary for local use:
or the following to include ARM, though I don't have access to an M1 Mac to validate:
Was looking into the required CLI for use for continuous integration, but figured while at it creating some documentation could be useful.
The text was updated successfully, but these errors were encountered: