Fix the use of the CMake variable ${OPENGL_glu_LIBRARY}. Use ${} instead of $().

This commit is contained in:
Laurent Rineau 2008-02-08 13:42:55 +00:00
parent 1ba22424c7
commit 2e47cfb56d
1 changed files with 1 additions and 1 deletions

View File

@ -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()