mirror of https://github.com/CGAL/cgal
Fix the use of the CMake variable ${OPENGL_glu_LIBRARY}. Use ${} instead of $().
This commit is contained in:
parent
1ba22424c7
commit
2e47cfb56d
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue