MagnumImGui

You can try MagnumImGui here here.

To use MagnumImGui you need to have Magnum on you machine.

Installation guide

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 install

Usage

You 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)

Explain usage in more detail

Example

Run build/src/Example to see what MagnumImGui can do.

img.png