Adapted paths and settings for darwin compatibility

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@9 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Mike Kremer
2009-02-08 13:55:31 +00:00
parent 3fc98df06c
commit 41b24a3fde

View File

@@ -9,9 +9,9 @@ defineTest( qt ) {
} }
defineTest( glew ) { defineTest( glew ) {
INCLUDEPATH *= /Users/sattler/acg/glew/include/GL INCLUDEPATH *= /sw/include/GL
export(INCLUDEPATH) export(INCLUDEPATH)
LIBS *= -L/Users/sattler/acg/glew/lib -lGLEW LIBS *= -L/sw/lib -lGLEW
export(LIBS) export(LIBS)
} }
@@ -22,9 +22,16 @@ defineTest( glut ) {
export(LIBS) export(LIBS)
} }
defineTest( openmesh ) { defineTest( openmesh ) {
QMAKE_LIBDIR += $${TOPDIR}/OpenMesh/Core/lib/$${BUILDDIRECTORY} QMAKE_LIBDIR += $${TOPDIR}/OpenMesh/Core/lib/$${BUILDDIRECTORY}
LIBS+= -install_name$${TOPDIR}/OpenMesh/Core/lib/$${BUILDDIRECTORY} -lCore LIBS += -lCore
export(QMAKE_LIBDIR) export(QMAKE_LIBDIR)
export(LIBS) export(LIBS)
}
defineTest( openmesh_tools ) {
QMAKE_LIBDIR += $${TOPDIR}/OpenMesh/Tools/lib/$${BUILDDIRECTORY}
LIBS += -lTools
export(QMAKE_LIBDIR)
export(LIBS)
} }