You can try MagnumImGui here here.
To use MagnumImGui you need to have Magnum on you machine.
To download, build and install please run the following
commands. Please change -DCMAKE_INSTALL_PREFIX=/usr/ to your
desired installation destination.
git clone --recursive https://github.com/lecopivo/MagnumImguiPort.git
cd MagnumImguiPort
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/
make -j
make installYou can have a look at src/Example.cpp to see how is the library
used.
Once MagnumImGui is installed you can use it by including files:
#include <MagnumImGui/MagnumImGui.h>
#include <MagnumImGui/imgui.h>and link libMagnumImGui, i.e. in cmake
target_link_libraries(main MagnumImGui)Run build/src/Example to see what MagnumImGui can do.
