fipsified cimgui lib (https://github.com/cimgui/cimgui)
fips build system: https://github.com/floooh/fips
Add the dependency to your fips.yml file:
imports:
fips-cimgui:
git: https://github.com/fips-libs/fips-cimgui
Use cimgui as dependency in your targets:
fips_begin_*(...)
...
fips_deps(cimgui)
fips_end_*(...)
Do not link both with ImGui and cimgui to the same target, cimgui comes with its own Dear ImGui, and this would clash with another Dear ImGui linked to the same project.
Include the cimgui header like this:
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
#include "cimgui/cimgui.h"