https://github.com/humankernel/imgui_cpp_sdl3_opengl3
Template to use ImGUI with C++
https://github.com/humankernel/imgui_cpp_sdl3_opengl3
Last synced: 15 days ago
JSON representation
Template to use ImGUI with C++
- Host: GitHub
- URL: https://github.com/humankernel/imgui_cpp_sdl3_opengl3
- Owner: humankernel
- Created: 2025-11-13T23:03:00.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-13T23:49:17.000Z (7 months ago)
- Last Synced: 2025-11-14T01:17:41.038Z (7 months ago)
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Setup
Prerrequisites:
- GLFW3: https://github.com/glfw/glfw/releases
- OpenGL3
- Windows: You need `mscv` installed.
- Linux: `gcc` or `clang` compiler installed.
```shell
# Get the project
git clone https://github.com/humnakernel/imgui_cpp_glfw3_opengl3.git
cd imgui_cpp_glfw3_opengl3
# Clone ImGUI inside the project
git clone --depth 1 https://github.com/ocornut/imgui.git -b docking
# Change the `build.bat` or `build.sh` to update the glfw location
```