WTEngine is a lightweight cross-platform game engine written in C++17 using an ECS design.
- Build tools:
- A working C++ build environment with CMake
- Libraries:
- Allegro Game Library
- OpenGL (2d only)
Installation is handled by CMake. To download and prepare the library for installation run:
git clone https://github.com/wtfsystems/wtengine.git
cd wtengine
mkdir build
cd build
cmake ..
cd ..
Then to install the library run:
sudo cmake --build build --target install --config Build