quick-camera icon indicating copy to clipboard operation
quick-camera copied to clipboard

Build instructions?

Open ajmas opened this issue 4 years ago • 0 comments

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.

ajmas avatar Jan 24 '21 16:01 ajmas