shooting-stars - a simple graphical app that creates an everlasting stream of colored stars.
-
Clone this project and then cd to the project folder;
-
Init the sfml git submodule:
$ git submodule init
$ git submodule update --init --recursive
OR
$ task init
- Configure the project using CMake:
$ cmake -B ./build -G <preferred generator> -DCMAKE_BUILD_TYPE=<Debug|Release>
OR
$ task configure_<debug|release> -- <preferred generator>
- Then run build command:
$ cmake --build ./build --config <Debug|Release>
OR
$ task build_<debug|release>
- You've done! The builded binary file available in the build directory, you can run it using:
$ task run
This project is licensed under the MIT License.
My thanks to the developers of the SFML.