Skip to content
Krzysztof Kołodziejczyk edited this page Apr 20, 2024 · 5 revisions

Install the package manager Homebrew: http://brew.sh

Install dependencies

brew install git cmake wxmac boost libarchive vcpkg pkg-config

Install vcpkg (required by rme's dependencies)

git clone https://github.com/microsoft/vcpkg
cd vcpkg
./bootstrap-vcpkg.sh

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_ROOT/scripts/buildsystems/vcpkg.cmake ..
make -j4

Run the editor

./rme
Clone this wiki locally