mirror of https://github.com/CGAL/cgal
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
# This file must be included in your CMakeLists.txt to use cgal_map_viewer_qt.h.
|
|
# You need to link the libraries in your executable by using
|
|
# TARGET_LINK_LIBRARIES( myexec ${MAP_VIEWER_LIBRARIES})
|
|
|
|
if ( NOT CGAL_FOUND OR NOT CGAL_Qt5_FOUND)
|
|
message(STATUS "NOTICE: Libraries for lcc_viewer not found "
|
|
"(CGAL, Qt5, QGLViewer).")
|
|
endif( NOT CGAL_FOUND OR NOT CGAL_Qt5_FOUND)
|
|
|
|
include( ${CGAL_USE_FILE} )
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
FIND_PACKAGE(Qt5 REQUIRED COMPONENTS OpenGL Xml)
|
|
find_package(QGLViewer REQUIRED)
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
add_definitions(-DQT_NO_KEYWORDS)
|
|
|
|
include_directories( ${QGLVIEWER_INCLUDE_DIR} )
|
|
add_definitions(${QGLVIEWER_DEFINITIONS})
|
|
|
|
set (MAP_VIEWER_LIBRARIES ${QT_LIBRARIES} ${QGLVIEWER_LIBRARIES}
|
|
${OPENGL_gl_LIBRARY}) # ${OPENGL_glu_LIBRARY}
|
|
|
|
set(MAP_VIEWER_MODULES Xml OpenGL)
|
|
|
|
ADD_DEFINITIONS("-DCGAL_LCC_USE_VIEWER -DCGAL_LCC_USE_QT")
|
|
message(STATUS "Libraries for lcc_viewer found. You need to link them "
|
|
"in your executable by using "
|
|
"TARGET_LINK_LIBRARIES( myexec \${MAP_VIEWER_LIBRARIES})")
|
|
|
|
set(LCC_VIEWER true)
|