Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sin3point14/quadcopter


https://github.com/sin3point14/quadcopter

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

## OpenGL renderer

To build:

```
mkdir build
cd build
cmake ..
```

To build with a specific build system, pass the generator name as
```
cmake .. -G
```

Find generators at https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#introduction

### Visual Studio

VS 2022:
```cmake .. -G "Visual Studio 17 2022"```
VS 2019:
```cmake .. -G "Visual Studio 16 2019"```
VS 2017:
```cmake .. -G "Visual Studio 15 2017"```

The open the solution file `build/quadcopter.sln`. And set `quadcopter` as startup project in the Solution Explorer

![Solution Explorer](https://imgur.com/ClYlSij)

### Ninja

```
cmake .. -G Ninja`
ninja
./src/Quadcopter
```