blob: ffc3f481fb86229db9dd20d5f54da3302e0ea122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
SET(libcola_SRC
cola.cpp
cola.h
conjugate_gradient.cpp
conjugate_gradient.h
connected_components.cpp
cycle_detector.cpp
cycle_detector.h
defs.h
gradient_projection.cpp
gradient_projection.h
shortest_paths.cpp
shortest_paths.h
straightener.cpp
straightener.h
)
ADD_LIBRARY(cola STATIC ${libcola_SRC})
|