summaryrefslogtreecommitdiffstats
path: root/src/libcola/CMakeLists.txt
blob: b5f2e7f1f9460f9e5338e864ff8cb6c2fd2b80be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SET(libcola_SRC
cola.cpp
conjugate_gradient.cpp
connected_components.cpp
cycle_detector.cpp
gradient_projection.cpp
shortest_paths.cpp
straightener.cpp
)
ADD_LIBRARY(cola STATIC ${libcola_SRC})
TARGET_LINK_LIBRARIES(cola
${INKSCAPE_LIBS})