Error message if libs not found on Windows machines

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@49 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Mike Kremer
2009-02-09 12:30:08 +00:00
parent eba8224bf8
commit 26cc1a1674

View File

@@ -5,6 +5,9 @@
defineTest( glew ) {
!exists ( c:\glew ) {
error (ERROR: GLEW not found or wrong path entry in OpenMesh\qmake\packages\packages.Windows!)
}
INCLUDEPATH *= c:\glew\include
export(INCLUDEPATH)
LIBS *= -Lc:\glew\lib -lglew32
@@ -19,6 +22,9 @@ defineTest( qt ) {
}
defineTest( glut ) {
!exists ( c:\glut ) {
error (ERROR: GLUT not found or wrong path entry in OpenMesh\qmake\packages\packages.Windows!)
}
INCLUDEPATH *= c:\glut\include
export(INCLUDEPATH)
LIBS *= -Lc:\glut\lib -lglut32