From fb8119a1f5b76bdf2f460e698e1434e563101ef5 Mon Sep 17 00:00:00 2001 From: Christian Beier Date: Thu, 3 Oct 2024 23:39:57 +0200 Subject: [PATCH] macos: add first stab at MacOS-specific release build instructions re #222 --- macos/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 macos/README.md 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 . +```