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

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++

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
```