summaryrefslogtreecommitdiffstats
path: root/src/2geom
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2009-01-12 01:25:52 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2009-01-12 01:25:52 +0000
commit431b6e2c2cfe6c10b101aaaf296550b4ec44c862 (patch)
treef962e3973c84b43e63ab44a3e9681876edde076c /src/2geom
parentcopyedit (diff)
downloadinkscape-431b6e2c2cfe6c10b101aaaf296550b4ec44c862.tar.gz
inkscape-431b6e2c2cfe6c10b101aaaf296550b4ec44c862.zip
Cmake: Fixed the extra -l in the link command, plus a add linking for all sub-libs of inkscape.
(bzr r7120)
Diffstat (limited to 'src/2geom')
-rw-r--r--src/2geom/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/CMakeLists.txt b/src/2geom/CMakeLists.txt
index e75c6174b..b5461487d 100644
--- a/src/2geom/CMakeLists.txt
+++ b/src/2geom/CMakeLists.txt
@@ -121,6 +121,6 @@ numeric/matrix.cpp
)
# make lib for 2geom
-ADD_LIBRARY(2geom ${LIB_TYPE} ${2GEOM_SRC})
+ADD_LIBRARY(2geom STATIC ${2GEOM_SRC})
#TARGET_LINK_LIBRARIES(2geom blas gsl)
-TARGET_LINK_LIBRARIES(2geom "${LINK_GSL} ${GTK2_LINK_FLAGS}")
+TARGET_LINK_LIBRARIES(2geom ${INKSCAPE_LIBS})