From 2e47cfb56d88c238069e899cf7f8510309d7ecc5 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 8 Feb 2008 13:42:55 +0000 Subject: [PATCH] Fix the use of the CMake variable ${OPENGL_glu_LIBRARY}. Use ${} instead of $(). --- Surface_mesher/demo/Surface_mesher/qt4-demo/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesher/demo/Surface_mesher/qt4-demo/CMakeLists.txt b/Surface_mesher/demo/Surface_mesher/qt4-demo/CMakeLists.txt index db5663b7f04..97d1eb53a50 100644 --- a/Surface_mesher/demo/Surface_mesher/qt4-demo/CMakeLists.txt +++ b/Surface_mesher/demo/Surface_mesher/qt4-demo/CMakeLists.txt @@ -62,6 +62,6 @@ if ( CGAL_FOUND AND QT_FOUND AND QGLVIEWER_FOUND ) target_link_libraries( ${prj} cgal cgal-image-io ${CGAL_3RD_PARTY_LIBRARIES}) endif() - target_link_libraries( ${prj} ${QT_LIBRARIES} ${QGLVIEWER_LIBRARY} ${OPENGL_gl_LIBRARY} $(OPENGL_glu_LIBRARY) ) + target_link_libraries( ${prj} ${QT_LIBRARIES} ${QGLVIEWER_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ) endif()