/ColdEngine

Direct3D Wrapper / 3D Engine written in C++

Primary LanguageC++MIT LicenseMIT

ColdEngine

Continuous Integration codecov Documentation License

Building

First, clone this repo:

git clone --recursive https://github.com/Onimuru/ColdEngine
  • Executable
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release
cd bin/Release
./<your project name>
  • Unit testing
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . --config Debug --target unit_tests
ctest -C Debug -VV
  • Documentation
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . --config Debug --target doxygen