Don't ask about Madd1
Madd2 is an entity component system game engine currently in pre-alpha limbo.
- git
- CMake 3.12+
- clang
- clang-tidy
- include-what-you-use
- PkgConfig
# Clone the repo
git clone ...
cd madd2/
# Setup Build Directory
mkdir build
cd build/
# Bootstrap CMake
# The following command additionally enables debug building and unit test building
cmake .. -D CMAKE_BUILD_TYPE=Debug -DPACKAGE_TESTS=ON
# Build Madd2
make
# Run Tests
make check
Interested in contributing to Madd2? See our CONTRIBUTING.md before getting started.