i've tried to make a basic glfw terminal application, wich is only made to test the header files and dll's, and i continualy receive the error code: "undefined reference to '__imp_glfwInit' " when compiling.
current os: windows 11
kde: vs code
additional information: the header files and dll's of glfw are in the same folder as the main.cpp
edit: the problem has solved after including the flag "-lglfw3" after the main.cpp, my mistake is that i was including it before main.cpp.