How do I link ImGui on macOS? #6411
Replies: 2 comments 1 reply
-
Is there some sort of library I need? |
Beta Was this translation helpful? Give feedback.
-
The symbol missing are ImGui::Begin() and ImGui::End() suggesting you are not LINKING with any object or library containing imgui code You need to compile imgui.cpp etc. and link the output into your app. The simplest and recommended way is to include the .cpp files in your projects and have all imgui sources/includes in your project folder or as a git submodule. If somehow you have "installed" them in /usr/local/include then you need to link the corresponding library. |
Beta Was this translation helpful? Give feedback.
-
I keep getting an error and I have no idea what to do.
I have a OpenGL3 as my renderer and GLFW as my backend.
Error:
Beta Was this translation helpful? Give feedback.
All reactions