NOTE: this version is archived and will no longer be updated, please use https://github.com/floooh/dcimgui
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-cimguiUse 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"