Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arsdever/opengl_tutorials
https://github.com/arsdever/opengl_tutorials
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/arsdever/opengl_tutorials
- Owner: arsdever
- License: mit
- Created: 2022-02-11T08:52:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-11T13:45:36.000Z (about 2 years ago)
- Last Synced: 2024-05-21T08:25:59.388Z (6 months ago)
- Language: C++
- Size: 162 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Prerequisites
- [vcpkg](https://vcpkg.io/en/getting-started.html)
- [CMake](https://cmake.org/install/)
- [A compiler](https://en.wikipedia.org/wiki/Compiler)
+ [Visual Studio](https://visualstudio.microsoft.com/)
+ [CLang](https://releases.llvm.org/download.html)
+ [GCC](https://gcc.gnu.org/)
+ Basically any compiler. If it doesn't compile or work properly, feel free
to file an issue. I'll definitelly address it.## Installation
1. Open a terminal
2. If you don't have the `vcpkg` in your path, `cd` to the `vcpkg` directory
3. Install some pakages with the following command
```
vcpkg install glfw3 glad OpenGL
```
5. Configure the `cmake`
```
cd -
mkdir build
cd build
cmake ../ -DCMAKE_TOOLCHAIN_FILE=/scripts/buildsystems/vcpkg.cmake
```
6. Build
```
cmake -b .
```