summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2008-04-07 00:00:42 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2008-04-07 00:00:42 +0000
commitd6f4e38264a505a110ab3250f47e22bd6262eddd (patch)
treedffa56cb3ff8849464d3b4dfc3a7789b3127263b /src
parentCmake: Added internal link libraries (diff)
downloadinkscape-d6f4e38264a505a110ab3250f47e22bd6262eddd.tar.gz
inkscape-d6f4e38264a505a110ab3250f47e22bd6262eddd.zip
Cmake: more fixs for C internal libs
(bzr r5358)
Diffstat (limited to 'src')
-rw-r--r--src/libcola/CMakeLists.txt2
-rw-r--r--src/libgdl/CMakeLists.txt12
-rw-r--r--src/libnrtype/CMakeLists.txt2
-rw-r--r--src/libvpsc/CMakeLists.txt11
4 files changed, 21 insertions, 6 deletions
diff --git a/src/libcola/CMakeLists.txt b/src/libcola/CMakeLists.txt
index 04005fde4..ffc3f481f 100644
--- a/src/libcola/CMakeLists.txt
+++ b/src/libcola/CMakeLists.txt
@@ -14,4 +14,4 @@ shortest_paths.h
straightener.cpp
straightener.h
)
-ADD_LIBRARY(inklibcola STATIC ${libcola_SRC}) \ No newline at end of file
+ADD_LIBRARY(cola STATIC ${libcola_SRC})
diff --git a/src/libgdl/CMakeLists.txt b/src/libgdl/CMakeLists.txt
index a30d0966f..5378e7e1e 100644
--- a/src/libgdl/CMakeLists.txt
+++ b/src/libgdl/CMakeLists.txt
@@ -1,3 +1,9 @@
+IF(WIN32)
+SET(GDL_WIN
+gdl-win32.c
+gdl-win32.h)
+ENDIF(WIN32)
+
SET(libgdl_SRC
gdl-dock.c
gdl-dock.h
@@ -26,13 +32,11 @@ gdl-stock.h
gdl-stock-icons.h
gdl-switcher.c
gdl-switcher.h
-gdl-tools.h
-gdl-win32.c
-gdl-win32.h
-libgdl.h
+gdl-tools.h libgdl.h
libgdlmarshal.c
libgdlmarshal.h
libgdltypebuiltins.c
libgdltypebuiltins.h
+${GDL_WIN}
)
ADD_LIBRARY(gdl STATIC ${libgdl_SRC})
diff --git a/src/libnrtype/CMakeLists.txt b/src/libnrtype/CMakeLists.txt
index 9d83d28fb..ba5c40ca5 100644
--- a/src/libnrtype/CMakeLists.txt
+++ b/src/libnrtype/CMakeLists.txt
@@ -34,4 +34,4 @@ text-boundary.h
TextWrapper.cpp
TextWrapper.h
)
-ADD_LIBRARY(inklibnrtype STATIC ${libnrtype_SRC}) \ No newline at end of file
+ADD_LIBRARY(nrtype STATIC ${libnrtype_SRC})
diff --git a/src/libvpsc/CMakeLists.txt b/src/libvpsc/CMakeLists.txt
new file mode 100644
index 000000000..23b6f84cd
--- /dev/null
+++ b/src/libvpsc/CMakeLists.txt
@@ -0,0 +1,11 @@
+SET(libvpsc_SRC
+block.cpp
+blocks.cpp
+constraint.cpp
+csolve_VPSC.cpp
+generate-constraints.cpp
+remove_rectangle_overlap.cpp
+solve_VPSC.cpp
+variable.cpp
+)
+ADD_LIBRARY(vpsc STATIC ${libvpsc_SRC})