forked from DrLiLab/dbGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
executable file
·193 lines (146 loc) · 9.21 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
cmake_minimum_required(VERSION 2.6)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 ")
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
project(graph)
include_directories(include)
file(GLOB headers
include/andres/*.hxx
include/andres/ilp/*.hxx
include/andres/graph/*.hxx
include/andres/graph/multicut/*.hxx
include/andres/graph/multicut-lifted/*.hxx
include/andres/graph/twocut-lifted/*.hxx
include/andres/graph/hdf5/*.hxx
include/andres/graph/detail/*.hxx
)
enable_testing()
##############################################################################
# Doxygen
##############################################################################
find_package(Doxygen)
##############################################################################
# OpenMP
##############################################################################
#find_package(OpenMP)
if(OPENMP_FOUND)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif()
##############################################################################
# HDF5
##############################################################################
find_package(HDF5 1.8.0)
include_directories(${HDF5_INCLUDE_DIR})
##############################################################################
# Gurobi
##############################################################################
find_package(GUROBI)
if(GUROBI_FOUND)
include_directories(${GUROBI_INCLUDE_DIR})
add_definitions("-DWITH_GUROBI")
endif()
##############################################################################
# C++11 support
##############################################################################
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Some functionality will not be available.")
endif()
##############################################################################
# targets: graph
##############################################################################
add_executable(test-graph-graph src/andres/graph/unit-test/graph.cxx ${headers})
add_test(test-graph-graph test-graph-graph)
add_executable(test-graph-digraph src/andres/graph/unit-test/digraph.cxx ${headers})
add_test(test-graph-digraph test-graph-digraph)
add_executable(test-graph-shortest-paths src/andres/graph/unit-test/shortest-paths.cxx ${headers})
add_test(test-graph-shortest-paths test-graph-shortest-paths)
add_executable(test-graph-paths src/andres/graph/unit-test/paths.cxx ${headers})
add_test(test-graph-paths test-graph-paths)
add_executable(test-graph-components src/andres/graph/unit-test/components.cxx ${headers})
add_test(test-graph-components test-graph-components)
add_executable(test-graph-max-flow src/andres/graph/unit-test/max-flow.cxx ${headers})
add_test(test-graph-max-flow test-graph-max-flow)
if(COMPILER_SUPPORTS_CXX0X OR COMPILER_SUPPORTS_CXX11)
add_executable(test-graph-complete-graph src/andres/graph/unit-test/graph-complete.cxx ${headers})
add_test(test-graph-complete-graph test-graph-complete-graph)
add_executable(test-graph-grid-graph src/andres/graph/unit-test/graph-grid.cxx ${headers})
add_test(test-graph-grid-graph test-graph-grid-graph)
add_executable(test-graph-dfs src/andres/graph/unit-test/dfs.cxx ${headers})
add_test(test-graph-dfs test-graph-dfs)
add_executable(test-graph-bfs src/andres/graph/unit-test/bfs.cxx ${headers})
add_test(test-graph-bfs test-graph-bfs)
add_executable(test-graph-cut-vertices src/andres/graph/unit-test/cut-vertices.cxx ${headers})
add_test(test-graph-cut-vertices test-graph-cut-vertices)
add_executable(test-graph-bridges src/andres/graph/unit-test/bridges.cxx ${headers})
add_test(test-graph-bridges test-graph-bridges)
add_executable(test-graph-triangles src/andres/graph/unit-test/triangles.cxx ${headers})
add_test(test-graph-triangles test-graph-triangles)
add_executable(test-graph-minimum-spanning-tree src/andres/graph/unit-test/minimum-spanning-tree.cxx ${headers})
add_test(test-graph-minimum-spanning-tree test-graph-minimum-spanning-tree)
add_executable(test-graph-lifting src/andres/graph/unit-test/lifting.cxx ${headers})
add_test(test-graph-lifting test-graph-lifting)
add_executable(test-graph-multicut-lifted-kl src/andres/graph/unit-test/multicut-lifted/kernighan-lin.cxx ${headers})
add_test(test-graph-multicut-lifted-kl test-graph-multicut-lifted-kl)
add_executable(test-graph-multicut-lifted-greedy-additive src/andres/graph/unit-test/multicut-lifted/greedy-additive.cxx ${headers})
add_test(test-graph-multicut-lifted-greedy-additive test-graph-multicut-lifted-greedy-additive)
add_executable(test-graph-multicut-kernighan-lin src/andres/graph/unit-test/multicut/kernighan-lin.cxx ${headers})
add_test(test-graph-multicut-kernighan-lin test-graph-multicut-kernighan-lin)
add_executable(test-graph-multicut-greedy-additive src/andres/graph/unit-test/multicut/greedy-additive.cxx ${headers})
add_test(test-graph-multicut-greedy-additive test-graph-multicut-greedy-additive)
add_executable(test-graph-bipartite-matching src/andres/graph/unit-test/bipartite-matching.cxx ${headers})
add_test(test-graph-bipartite-matching test-graph-bipartite-matching)
add_executable(test-graph-multicut-mutex-watershed src/andres/graph/unit-test/multicut/mutex-watershed.cxx ${headers})
add_test(test-graph-multicut-mutex-watersehd test-graph-multicut-mutex-watershed)
add_executable(test-graph-multicut-preprocessing src/andres/graph/unit-test/multicut/preprocessing.cxx ${headers})
add_test(test-graph-multicut-preprocessing test-graph-multicut-preprocessing)
if(HDF5_FOUND)
include_directories(PUBLIC ${HDF5_INCLUDE_DIRS})
add_executable(test-hdf5 src/andres/graph/unit-test/hdf5.cxx ${headers})
target_link_libraries(test-hdf5 ${HDF5_LIBRARIES})
add_test(test-hdf5 test-hdf5)
endif()
endif(COMPILER_SUPPORTS_CXX0X OR COMPILER_SUPPORTS_CXX11)
if(GUROBI_FOUND)
add_executable(test-graph-multicut-ilp src/andres/graph/unit-test/multicut/ilp.cxx ${headers})
target_link_libraries(test-graph-multicut-ilp ${CMAKE_THREAD_LIBS_INIT} ${GUROBI_CPP_LIBRARY} ${GUROBI_LIBRARY})
add_test(test-graph-multicut-ilp test-graph-multicut-ilp)
add_executable(test-graph-multicut-ilp-callback src/andres/graph/unit-test/multicut/ilp-callback.cxx ${headers})
target_link_libraries(test-graph-multicut-ilp-callback ${CMAKE_THREAD_LIBS_INIT} ${GUROBI_CPP_LIBRARY} ${GUROBI_LIBRARY})
add_test(test-graph-multicut-ilp-callback test-graph-multicut-ilp-callback)
add_executable(test-graph-multicut-lifted-ilp src/andres/graph/unit-test/multicut-lifted/ilp.cxx ${headers})
target_link_libraries(test-graph-multicut-lifted-ilp ${CMAKE_THREAD_LIBS_INIT} ${GUROBI_CPP_LIBRARY} ${GUROBI_LIBRARY})
add_test(test-graph-multicut-lifted-ilp test-graph-multicut-lifted-ilp)
add_executable(test-graph-multicut-lifted-ilp-callback src/andres/graph/unit-test/multicut-lifted/ilp-callback.cxx ${headers})
target_link_libraries(test-graph-multicut-lifted-ilp-callback ${CMAKE_THREAD_LIBS_INIT} ${GUROBI_CPP_LIBRARY} ${GUROBI_LIBRARY})
add_test(test-graph-multicut-lifted-ilp-callback test-graph-multicut-lifted-ilp-callback)
endif()
if(DOXYGEN_FOUND)
configure_file("${graph_SOURCE_DIR}/doxygen/doxyfile-graph.in" "${graph_BINARY_DIR}/doxyfile-graph" @ONLY IMMEDIATE)
add_custom_target(doc-graph ALL COMMAND ${DOXYGEN} "${graph_BINARY_DIR}/doxyfile-graph")
endif()
if((COMPILER_SUPPORTS_CXX0X OR COMPILER_SUPPORTS_CXX11) AND HDF5_FOUND)
include_directories(src)
add_executable(test-probabilistic-lifting src/command-line-tools/test-probabilistic-lifting.cxx ${headers})
add_test(test-probabilistic-lifting test-probabilistic-lifting)
add_executable(lift-mp src/command-line-tools/lift-mp.cxx ${headers})
target_link_libraries(lift-mp ${HDF5_LIBRARIES})
add_executable(lift-mp-grid-graph src/command-line-tools/lift-mp-grid-graph.cxx ${headers})
target_link_libraries(lift-mp-grid-graph ${HDF5_LIBRARIES})
add_executable(solve-mp src/command-line-tools/solve-mp.cxx ${headers})
target_link_libraries(solve-mp ${HDF5_LIBRARIES} ${GUROBI_LIBRARIES})
add_executable(solve-mp-complete-graph src/command-line-tools/solve-mp-complete-graph.cxx ${headers})
target_link_libraries(solve-mp-complete-graph ${HDF5_LIBRARIES} ${GUROBI_LIBRARIES})
add_executable(solve-mp-grid-graph src/command-line-tools/solve-mp-grid-graph.cxx ${headers})
target_link_libraries(solve-mp-grid-graph ${HDF5_LIBRARIES} ${GUROBI_LIBRARIES})
add_executable(solve-lmp src/command-line-tools/solve-lmp.cxx ${headers})
target_link_libraries(solve-lmp ${HDF5_LIBRARIES} ${GUROBI_LIBRARIES})
add_executable(solve-lmp-grid-graph src/command-line-tools/solve-lmp-grid-graph.cxx ${headers})
target_link_libraries(solve-lmp-grid-graph ${HDF5_LIBRARIES} ${GUROBI_LIBRARIES})
endif()