Where can i download file for glu.lib, libOpenMeshCore.so, libOpenMeshTools.so

I need these glu.lib, libOpenMeshCore.so, libOpenMeshTools.so for Mesh Viewer project and OpenMesh. I keep getting error from this line, telling that the file cannot be open.

LIBS +=
/usr/local/lib/libOpenMeshCore.so
/usr/local/lib/libOpenMeshTools.so

LIBS +=
-lglut32 -lGLU -lOpenGL32

[QUOTE=EllaDeGuzman;1292554]I need these glu.lib, libOpenMeshCore.so, libOpenMeshTools.so for Mesh Viewer project and OpenMesh. I keep getting error from this line, telling that the file cannot be open.

LIBS +=
/usr/local/lib/libOpenMeshCore.so
/usr/local/lib/libOpenMeshTools.so

LIBS +=
-lglut32 -lGLU -lOpenGL32[/QUOTE]

Instead of “-lGLU”, try “-lglu32”. Similar to the GLUT and OpenGL libraries, on Windows these seem to have a “32” suffix. This causes the linker to find these files: glu32.lib / glu32.dll.

-lGLU is probably left over from a UNIX system where the common name for the GLU library is libGLU.so.

OpenMesh isn’t related to OpenGL, so you’re on your own there, but it appears these may come from: http://www.openmesh.org/

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.