← Back to team overview

kicad-developers team mailing list archive

Re: GLEW not found by cmake + fix

 

Hi Edwin,

Thank you for the patch, hopefully it will get commited soon. I did not even expect /usr/lib has to be added explicitly, but if it solves the issue - why not?

Regards,
Orson

On 11/02/2013 12:35 PM, Edwin van den Oetelaar wrote:
Running a very common Ubuntu 12.4.3 building from repo did not work.
Could not find the GLEW library.
Adding this patch fixed it.
Greetings,
Edwin van den Oetelaar

bzr diff
=== modified file 'CMakeModules/FindGLEW.cmake'
--- CMakeModules/FindGLEW.cmake2013-08-27 08:32:39 +0000
+++ CMakeModules/FindGLEW.cmake2013-11-02 11:13:42 +0000
@@ -67,6 +67,8 @@
      FIND_LIBRARY( GLEW_GLEW_LIBRARY GLEW
        /usr/openwin/lib
        /usr/X11R6/lib
+      /usr/lib
+      /usr/lib/x86_64-linux-gnu
      )
    ENDIF (APPLE)



_______________________________________________
Mailing list: https://launchpad.net/~kicad-developers
Post to     : kicad-developers@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp




References