Simple template to use Dear ImGui with GLFW.
On Windows and macos this should build without installing any system dependencies.
On Linux you need to install the X11/Wayland development packages. Ubuntu:
sudo apt install xorg-dev libwayland-dev
To only build for X11, use the following configuration options:
cmake -B build -DGLFW_BUILD_WAYLAND=OFF -DGLFW_BUILD_X11=ON
git submodule update --init
cmake -B build