Skip to content

Commit

Permalink
macos: add first stab at MacOS-specific release build instructions
Browse files Browse the repository at this point in the history
re #222
  • Loading branch information
bk138 committed Oct 3, 2024
1 parent f01187c commit fb8119a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions macos/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# MacOS Release Build Instructions

For the time being, we're building an Intel binary only. Universal builds to come later.

- Install build tools: `brew install cmake gettext`
- Install build dependencies: `brew install wxwidgets jpeg-turbo openssl`
- Build release app:
```
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install . --prefix .
```

0 comments on commit fb8119a

Please sign in to comment.