mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
189be8c68f
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
1.2 KiB
1.2 KiB
Building on macOS
Chatterino2 is built in CI on Intel on macOS 13. Local dev machines for testing are available on Apple Silicon on macOS 13.
Installing dependencies
- Install Xcode and Xcode Command Line Utilities
- Start Xcode, go into Settings -> Locations, and activate your Command Line Tools
- Install Homebrew
We use this for dependency management on macOS - Install all dependencies:
brew install boost openssl@1.1 rapidjson cmake qt@5
Building
Building from terminal
- Open a terminal
- Go to the project directory where you cloned Chatterino2 & its submodules
- Create a build directory and go into it:
mkdir build && cd build
- Run CMake. To enable Lua plugins in your build add
-DCHATTERINO_PLUGINS=ON
to this command.
cmake -DCMAKE_PREFIX_PATH=/opt/homebrew/opt/qt@5 -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl@1.1 ..
- Build:
make
Your binary can now be found under bin/chatterino.app/Contents/MacOS/chatterino directory
Other building methods
You can achieve similar results by using an IDE like Qt Creator, although this is undocumented but if you know the IDE you should have no problems applying the terminal instructions to your IDE.