Command line tool to generate mazes, ouputs as bitmap or text
Follow these steps to build the project
- Install cmake and a c++17 compiler
- Clone repo with
git clone --recursiveto clone with submodules. If you have already cloned you can rungit submodule update --init --recursive - Create build directory with
mkdir build - Generate build system with
cmake -B build -S . - Run the build with
cmake --build build
After this the main executable can be found at ./build/bin/maze
After a build run ctest from the build directory to run the tests.
