summaryrefslogtreecommitdiffstats
path: root/src/trace
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-12 21:27:00 +0000
committerCampbell Barton <ideasman42@gmail.com>2011-06-12 21:27:00 +0000
commitde03354959190a2c5392d79e03dd22dc45777e41 (patch)
tree4bbc9bfc52d66a54926a935df74306b982d36508 /src/trace
parentcmake: commented unused files/dirs, double checked all files compile this time (diff)
downloadinkscape-de03354959190a2c5392d79e03dd22dc45777e41.tar.gz
inkscape-de03354959190a2c5392d79e03dd22dc45777e41.zip
cmake: give all libs a _LIB suffix, workaround 'debug' being confused with cake keyword, and also dont mix up dor names with libs.
(bzr r10274)
Diffstat (limited to 'src/trace')
-rw-r--r--src/trace/CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/trace/CMakeLists.txt b/src/trace/CMakeLists.txt
index 312ee209c..d3bdcb6b1 100644
--- a/src/trace/CMakeLists.txt
+++ b/src/trace/CMakeLists.txt
@@ -1,4 +1,5 @@
add_subdirectory(potrace)
+
set(trace_SRC
filterset.cpp
imagemap.cpp
@@ -8,6 +9,6 @@ set(trace_SRC
trace.cpp
${trace_potrace_SRC}
)
-ADD_LIBRARY(trace STATIC ${trace_SRC})
-TARGET_LINK_LIBRARIES(trace
-2geom ${INKSCAPE_LIBS}) \ No newline at end of file
+
+ADD_LIBRARY(trace_LIB STATIC ${trace_SRC})
+TARGET_LINK_LIBRARIES(trace_LIB 2geom_LIB ${INKSCAPE_LIBS})