Integrate Dear ImGui Bundle in your own project in 5 minutes¶
The easiest way to use Dear ImGui Bundle in an external project is to use the template available at https://
This template includes everything you need to set up your own project.
Build from source¶
If you choose to clone this repo, follow these instructions:
git clone https://github.com/pthom/imgui_bundle.git
cd imgui_bundle
git submodule update --init --recursive # (1)
mkdir build
cd build
cmake ..
make -j(1) Since there are lots of submodules, this might take a few minutes
Run the C++ demo¶
If you built ImGuiBundle from source, Simply run build/bin/demo_imgui_bundle.
The source for the demos can be found inside bindings/imgui_bundle/demos_cpp.
Multiplatform applications¶
Hello ImGui and Dear ImGui Bundle offer excellent support for multiplatform applications (Windows, macOS, Linux, iOS, Android, and Emscripten).
See this tutorial video for Hello ImGui:
