An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Boids-SFML

A boids simulation made using C++ and SFML.

## Demo

![Boids-Demo](.github/boids-demo.gif)

## 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).