summaryrefslogtreecommitdiff
path: root/GudhUI/CMakeLists.txt
blob: ca2e47c12b124d324466e55e69b9338b9f37e8e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
cmake_minimum_required(VERSION 2.8)
project(GudhUI)

find_package(Qt5 COMPONENTS Widgets Xml OpenGL)
find_package(QGLViewer)
find_package(OpenGL)

if (CGAL_VERSION VERSION_EQUAL 4.8.0)
  message(ERROR " GudhUI does not compile with CGAL 4.8.0. 4.8.1, 4.8.2 and 4.9 are OK.")
endif()

if (NOT CGAL_FOUND)
  message(ERROR " GudhUI requires CGAL and will not be compiled.")
endif()

if (NOT Qt5_FOUND)
  message(ERROR " GudhUI requires Qt5 and will not be compiled.")
endif()

if (NOT OPENGL_FOUND)
  message(ERROR " GudhUI requires OpenGL and will not be compiled.")
endif()

if (NOT QGLVIEWER_FOUND)
  message(ERROR " GudhUI requires QGLViewer and will not be compiled.")
endif()



if ( CGAL_FOUND AND Qt5_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND AND NOT CGAL_VERSION VERSION_EQUAL 4.8.0)

  set(CMAKE_AUTOMOC ON)
  set(CMAKE_AUTOUIC ON)
  set(CMAKE_INCLUDE_CURRENT_DIR ON)

  SET(Boost_USE_STATIC_LIBS ON)
  SET(Boost_USE_MULTITHREAD OFF)
  include_directories (${QGLVIEWER_INCLUDE_DIR})
 
  #####################################################################

  add_executable  ( GudhUI 
    gui/gudhui.cpp
    gui/MainWindow.cpp
    gui/Menu_k_nearest_neighbors.cpp	
    gui/Menu_uniform_neighbors.cpp
    gui/Menu_edge_contraction.cpp  
    gui/Menu_persistence.cpp
    view/Viewer_instructor.cpp				
    view/Viewer.cpp
  )	
  target_link_libraries( GudhUI Qt5::Widgets Qt5::Xml Qt5::OpenGL )
  target_link_libraries( GudhUI ${QGLVIEWER_LIBRARIES} )
  target_link_libraries( GudhUI ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} )	
if (TBB_FOUND)
  target_link_libraries( GudhUI ${TBB_LIBRARIES})
endif()

###############################################################################

else()
  message(STATUS "NOTICE: GudhUI requires CGAL, the QGLViewer, OpenGL and Qt5, and will not be compiled.")
endif()