-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
86 lines (70 loc) · 2.12 KB
/
CMakeLists.txt
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
cmake_minimum_required(VERSION 2.6)
project(CellLineage)
find_package(VTK)
if(NOT VTK_DIR)
message(FATAL_ERROR "Please set VTK_DIR.")
endif()
include(${VTK_USE_FILE})
# use what QVTK built with
set(QT_MOC_EXECUTABLE ${VTK_QT_MOC_EXECUTABLE} CACHE FILEPATH "")
set(QT_UIC_EXECUTABLE ${VTK_QT_UIC_EXECUTABLE} CACHE FILEPATH "")
set(QT_QMAKE_EXECUTABLE ${VTK_QT_QMAKE_EXECUTABLE} CACHE FILEPATH "")
set(DESIRED_QT_VERSION ${VTK_DESIRED_QT_VERSION} CACHE FILEPATH "")
find_package(Qt4 REQUIRED)
include(${QT_USE_FILE})
# Use the include path and library for Qt that is used by VTK.
include_directories(
${QT_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
)
# Set your files and resources here
set(Srcs
main.cxx
CellLineage.cxx
QSliderLineEdit.cxx
QVCRWidget.cxx
vtkLineageView.cxx
vtkTreeCollapseFilter.cxx
vtkTreeVertexToEdgeSelection.cxx
vtkElbowGraphToPolyData.cxx
vtkVolumeViewer.cxx
)
set(UIs CellLineage.ui QVCRWidget.ui)
set(Headers CellLineage.h QSliderLineEdit.h QtSNLCommon.h QVCRWidget.h)
set(Resources Icons/FamFamFamIcons.qrc)
# The rest should just work (sure...)
QT4_WRAP_UI(UISrcs ${UIs})
QT4_WRAP_CPP(MOCSrcs ${Headers} )
QT4_ADD_RESOURCES(ResourceSrcs ${Resources})
source_group("Resources" FILES
${UIs}
${Resources}
${EXE_ICON}
)
source_group("Generated" FILES
${UISrcs}
${MOCSrcs}
${ResourceSrcs}
${RCS_SOURCES}
)
add_definitions(-DQT_GUI_LIBS -DQT_CORE_LIB -DQT3_SUPPORT)
set_source_files_properties(${Srcs} PROPERTIES
OBJECT_DEPENDS "${UISrcs}")
# It's nice to have the ui in the windows project file...just double click on it
# and designer comes up on that ui file :)
if (${CMAKE_BUILD_TOOL} MATCHES "msdev")
set (Srcs ${Srcs} ${UIs})
endif()
if (${CMAKE_BUILD_TOOL} MATCHES "devenv")
set (Srcs ${Srcs} ${UIs})
endif()
add_executable( CellLineage MACOSX_BUNDLE ${Srcs} ${UISrcs} ${MOCSrcs} ${ResourceSrcs})
target_link_libraries( CellLineage
QVTK
${QT_LIBRARIES}
vtkViews
vtkVolumeRendering
)
add_executable( TableToAdjacencyList MACOSX_BUNDLE TableToAdjacencyList.cxx )
target_link_libraries( TableToAdjacencyList vtkInfovis )