I've recently started coding with c++ and the project that im currently on requires imgui. so i set up the .h and .cpp libraries in a folder called "include" in the same folder as the source code. I'm currently trying to run the cpp in https://github.com/ocornut/imgui/tree/master/examples/example_glfw_opengl3 and compile it with gcc using gcc imgui.cpp -lstdc++ -lglfw -lGL -limgui
but i just get
/usr/bin/ld: cannot find -limgui
collect2: error: ld returned 1 exit status
yes i know there is a make file in the link but im using the file in another folder.