https://github.com/mrexodia/imgui_cmkr
Experimental imgui app framework for rapid prototyping.
https://github.com/mrexodia/imgui_cmkr
cmkr imgui imgui-wrapper
Last synced: 8 months ago
JSON representation
Experimental imgui app framework for rapid prototyping.
- Host: GitHub
- URL: https://github.com/mrexodia/imgui_cmkr
- Owner: mrexodia
- Created: 2023-02-22T15:34:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T19:41:52.000Z (over 2 years ago)
- Last Synced: 2025-02-02T02:41:16.485Z (over 1 year ago)
- Topics: cmkr, imgui, imgui-wrapper
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# imgui_cmkr
Simple template to use [Dear ImGui](https://github.com/ocornut/imgui) with GLFW.
## Dependencies
On Windows and macos this should build without installing any system dependencies.
On Linux you need to install the X11/Wayland development packages. Ubuntu:
```sh
sudo apt install xorg-dev libwayland-dev
```
To only build for X11, use the following configuration options:
```sh
cmake -B build -DGLFW_BUILD_WAYLAND=OFF -DGLFW_BUILD_X11=ON
```
## Building
```sh
git submodule update --init
cmake -B build
```