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!
- Host: GitHub
- URL: https://github.com/st235/learnopengl-macos-bootstrap
- Owner: st235
- License: mit
- Created: 2025-01-31T19:37:44.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-12T20:49:46.000Z (7 months ago)
- Last Synced: 2025-03-12T21:31:28.599Z (7 months ago)
- Topics: cmake, glad, glfw, learnopengl, macos, opengl
- Language: C++
- Homepage: https://learnopengl.com/
- Size: 532 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```