summaryrefslogtreecommitdiffstats
path: root/src/libcola
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2011-06-19 10:00:24 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2011-06-19 10:00:24 +0000
commit06dfaa02d7a80bcdff717d579a48f81643f53f31 (patch)
tree49b8e67ad9051f1507b0959cac986383ab4001e2 /src/libcola
parentFix rendering of control points (diff)
parentfix bug 796451: Measure tools should support rotation constraint (diff)
downloadinkscape-06dfaa02d7a80bcdff717d579a48f81643f53f31.tar.gz
inkscape-06dfaa02d7a80bcdff717d579a48f81643f53f31.zip
Merge from trunk
(bzr r9508.1.89)
Diffstat (limited to 'src/libcola')
-rw-r--r--src/libcola/CMakeLists.txt33
1 files changed, 22 insertions, 11 deletions
diff --git a/src/libcola/CMakeLists.txt b/src/libcola/CMakeLists.txt
index b5f2e7f1f..c89ffc692 100644
--- a/src/libcola/CMakeLists.txt
+++ b/src/libcola/CMakeLists.txt
@@ -1,12 +1,23 @@
-SET(libcola_SRC
-cola.cpp
-conjugate_gradient.cpp
-connected_components.cpp
-cycle_detector.cpp
-gradient_projection.cpp
-shortest_paths.cpp
-straightener.cpp
+
+set(libcola_SRC
+ cola.cpp
+ conjugate_gradient.cpp
+ connected_components.cpp
+ # cycle_detector.cpp
+ gradient_projection.cpp
+ shortest_paths.cpp
+ straightener.cpp
+
+
+ # -------
+ # Headers
+ cola.h
+ conjugate_gradient.h
+ # cycle_detector.h
+ defs.h
+ gradient_projection.h
+ shortest_paths.h
+ straightener.h
)
-ADD_LIBRARY(cola STATIC ${libcola_SRC})
-TARGET_LINK_LIBRARIES(cola
-${INKSCAPE_LIBS}) \ No newline at end of file
+
+add_inkscape_lib(cola_LIB "${libcola_SRC}")