-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #932 from qw-ctf/update-macos-ci
CI: Update macOS snapshots to use cmake
- Loading branch information
Showing
8 changed files
with
103 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# How to compile on macOS | ||
|
||
Get Homebrew: http://brew.sh | ||
|
||
Run exactly as it says on the front page: | ||
``` | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
``` | ||
|
||
Make sure you run the 'brew doctor' as instructed before doing anything else. | ||
|
||
Then run: | ||
``` | ||
brew install autoconf automake libtool cmake ninja | ||
``` | ||
|
||
When it's done, initialize cmake to build the dependencies: | ||
``` | ||
./bootstrap.sh | ||
cmake --preset macos-arm64 (or -x64) | ||
``` | ||
|
||
And finally building ezQuake: | ||
``` | ||
cmake --build build-macos-arm64 --config Release | ||
``` | ||
|
||
This will produce `build-macos-arm64/Release/ezQuake.app` which you can place anywhere. The first | ||
launch will prompt you to select your Quake directory which will be automatically reused for | ||
subsequent invocations. The application is sandboxed to this directory to keep your files safe. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.