diff --git a/macos/README.md b/macos/README.md new file mode 100644 index 00000000..c088bfa6 --- /dev/null +++ b/macos/README.md @@ -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 . +```