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

https://github.com/st235/learnopengl-macos-bootstrap

🚀 CMake Setup for GLFW & GLAD on macOS – Ready for LearnOpenGL!
https://github.com/st235/learnopengl-macos-bootstrap

cmake glad glfw learnopengl macos opengl

Last synced: 7 months ago
JSON representation

🚀 CMake Setup for GLFW & GLAD on macOS – Ready for LearnOpenGL!

Awesome Lists containing this project

README

          

# 🚀 CMake Setup for GLFW & GLAD on macOS – Ready for LearnOpenGL!

This project provides a simple CMake setup for using GLFW and GLAD on macOS,
making it easy to follow the tutorials from [LearnOpenGL](https://learnopengl.com/).

Automatically downloads and configures:
- GLFW
- GLAD
- [STB Image](https://github.com/nothings/stb)
- [GLM](https://github.com/g-truc/glm)

✅ CMake-based build system for macOS

✅ Bootstraped for LearnOpenGL lessons

### Build

```bash
cmake . -B out
cd out
make
./learnopengl
```