Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sin3point14/quadcopter
https://github.com/sin3point14/quadcopter
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sin3point14/quadcopter
- Owner: sin3point14
- Created: 2022-06-19T19:33:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T21:25:29.000Z (over 2 years ago)
- Last Synced: 2023-03-03T13:47:06.740Z (over 1 year ago)
- Language: C++
- Size: 4.24 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```