-
Notifications
You must be signed in to change notification settings - Fork 265
Compiling on macOS
Lobs edited this page Dec 30, 2023
·
5 revisions
Install the package manager Homebrew: http://brew.sh
Install dependencies
brew install git cmake wxmac boost libarchive vcpkgInstall vcpkg (required by rme's dependencies)
git clone https://github.com/microsoft/vcpkg
cd vcpkg
./bootstrap-vcpkg.sh
cd ..Install C++ dependencies
vcpkg install asio
vcpkg install nlohmann-json
vcpkg install wxWidgetsClone the project
git clone https://github.com/hjnilsson/rme.gitPrepare build directory and build
cd rme
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../../vcpkg/scripts/buildsystems/vcpkg.cmake ..
make -j4Run the editor
./rme