Small visually stimulating project I've created to mess around with ImGui and SFML. Also uses ImGui-SFML.
This project uses CMake and SFML 2.5.
-
Clone the repository
git clone https://github.com/Seng3694/BlackCircle
-
Generate the build files
mkdir bin cd bin cmake -G "Your Generator" -DSFML_DIR="PATH_TO_SFML/lib/cmake/SFML" ../BlackCircle
Notice the
SFML_DIR
parameter which must be set here. You could also edit the code locally and set theSFML_DIR
in the CMake file beforefind_package
is being called. -
Build the files
cmake --build . --config Release
This Code is licensed under the MIT License. See LICENSE for more information.