-
Hi, i trying to use ImGui in eclipse, i followed the instructions from ChatGPT, but still didnt work Can someone help? |
Beta Was this translation helpful? Give feedback.
Answered by
jld01
Dec 26, 2024
Replies: 1 comment 11 replies
-
im using windows 11 and mingw |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Minster23, the "undefined reference to ..." errors are from the GNU linker. You must add the folders containing your ImGui and GLFW libraries to the Library search path (-L) list and add the individual library names to the Libraries (-l) list. When adding a library name, you must omit the
lib
filename prefix and the.a
filename suffix. For example, a library archive file namedlibglfw3.a
should be listed asglfw3
in the libraries list.Does this explanation answer your question?