Skip to content
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 vcpkg

Install 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 wxWidgets

Clone the project

git clone https://github.com/hjnilsson/rme.git

Prepare build directory and build

cd rme
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../../vcpkg/scripts/buildsystems/vcpkg.cmake ..
make -j4

Run the editor

./rme

Clone this wiki locally