Imgui sample code cannot be built on linux

Question


Hi.

I’m someone who wants to build imgui sample code
First

~/Cinder/blocks

among

git clone https://github.com/simongeilfus/Cinder-ImGui.git
cd Cinder-ImGui / lib
git clone https://github.com/ocornut/imgui.git

And introduced ImGui.

And

~/Cinder/blocks /samples/Basic/linux

among
I ran the following command

mkdir build
cd build
cmake ..

Then, the following error will occur.

CMake Error at CMakeLists.txt: 14 (find_package):
Could not find a package configuration file provided by "cinder" with any
of the following names:

cinderConfig.cmake
    cinder-config.cmake

Add the installation prefix of "cinder" to CMAKE_PREFIX_PATH or set
"cinder_DIR" to a directory containing one of the above files. If "cinder"
provides a separate development package or SDK, be sure it has been
installed.

How can I build it?

I would be happy if you could tell me.

Development environment


Type of software name version
os Linux Mint 20
build tool Cmake 3.19.1
build tool Gnu Make 4.2.1
conpiler g++ 10.2.0
frame work Cinder 0.9.3

Hi,

If you’re using the latest master branch, Dear ImGui is shipped with libcinder, you don’t need the older Cinder-ImGui block. It should be available to your cinder app by default.

cheers,
Rich

Thank you for the information.
mr rich.e