Some starter code to get a window with ImGui running.
target_link_libraries(${TARGET} imgui-window)
if (im_window::window_init() != 0)
// panic
im_window::window_run([/* any representation of state */] {
ImGui::Text("Hello, world");
});
im_window::window_dispose();