From 26cc1a1674c5a1202438b05fc0c1001212cbd3ea Mon Sep 17 00:00:00 2001 From: Mike Kremer Date: Mon, 9 Feb 2009 12:30:08 +0000 Subject: [PATCH] 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 --- qmake/packages/packages.Windows | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qmake/packages/packages.Windows b/qmake/packages/packages.Windows index 6b6ac1f2..4e879c2c 100644 --- a/qmake/packages/packages.Windows +++ b/qmake/packages/packages.Windows @@ -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