https://github.com/ufrshubham/boids-sfml
A boids simulation made using C++ and SFML.
https://github.com/ufrshubham/boids-sfml
boids-simulation cmake cpp sfml sfml-boids
Last synced: about 1 year ago
JSON representation
A boids simulation made using C++ and SFML.
- Host: GitHub
- URL: https://github.com/ufrshubham/boids-sfml
- Owner: ufrshubham
- Created: 2021-05-15T15:55:02.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-14T18:27:11.000Z (almost 2 years ago)
- Last Synced: 2024-10-19T00:36:11.353Z (over 1 year ago)
- Topics: boids-simulation, cmake, cpp, sfml, sfml-boids
- Language: C++
- Homepage:
- Size: 1.19 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boids-SFML
A boids simulation made using C++ and SFML.
## Demo

## Requirements
- C++ compiler with support for C++14 (MSVC and GCC are actively tested).
- CMake Version 3.0.0.
- SFML 2.5.1 (Included as a submodule).
## Building
```bash
# Clone this project
$ git clone --recursive git@github.com:ufrshubham/Boids-SFML.git
# Go to project root
$ cd Boids-SFML/
# Make a build directory
$ cmake -E make_directory ./build
# Go to build directory
$ cd build/
# Configure cmake
$ cmake .. -DCMAKE_BUILD_TYPE=Release
# Build
$ cmake --build . --config Release
```
## References
- This project is based on [**jyanar/Boids**](https://github.com/jyanar/Boids).