Skip to content
Advertisement

CMake linking glfw3 lib error

i’m working with CLion, and I’m writing a program using the glfw3 lib.(http://www.glfw.org/docs/latest/)

I installed and did everything correctly for the lib i have the .a and .h files in:

JavaScript

I’m trying to use the library now, but i’m getting the linker error:

undefined reference to 'glViewport' etc. etc. all the functions i’m using

I added the lib path to the make file, I can’t understand what i’m doing wrong, my CMakeLists.txt looks like this:

JavaScript

any help will be appreciated.

Thanks!

Advertisement

Answer

You should not hard code absolute paths into your CMake files. This renders CMake useless.

In the documentation of GLFW on how to link against it, there it is explicitly written:

JavaScript

Moreover, you can replace

JavaScript

with

JavaScript

and CMake will figure out the correct compiler flag automatically depending on the compiler currently in use.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement