Skip to content

fips-libs/fips-cimgui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fips-cimgui

fipsified cimgui lib (https://github.com/cimgui/cimgui)

fips build system: https://github.com/floooh/fips

How to integrate:

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"