Entity Visualization for Ecosystem
git clone https://github.com/DarkStar1997/PlayerVisualization
cd PlayerVisualization
mkdir build
cmake -S . -B build/
cmake --build build/
./build/run/main
Check with --help to know about all the available options.
This project uses SFML for rendering. It's downloaded and build automatically by CMake. Make sure OpenGL is installed on the system and can be used by SFML.
- It is highly recommended to use Ninja as the build system for faster incremental builds. To do so, install ninja for your distribution and then modify the cmake generation command to
cmake -GNinja -S . -B build/