summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-03-30 17:30:24 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-03-30 17:30:24 +0000
commitebdd3e096f7e2055e563c90e484fde48dfc7d588 (patch)
tree237d3c04ef7ecd4fd37c1b40b49405d44e45eee0
parentadd CMakeLists.txt file for src/ui and subdirs (diff)
downloadinkscape-ebdd3e096f7e2055e563c90e484fde48dfc7d588.tar.gz
inkscape-ebdd3e096f7e2055e563c90e484fde48dfc7d588.zip
add CMakeLists.txt files for trace, traits, utest, util, widgets and xml. minimal checking was done with existing Makefile_insert
(bzr r5241)
-rw-r--r--src/trace/CMakeLists.txt24
-rw-r--r--src/trace/potrace/CMakeLists.txt20
-rw-r--r--src/traits/CMakeLists.txt2
-rw-r--r--src/utest/CMakeLists.txt2
-rw-r--r--src/util/CMakeLists.txt19
-rw-r--r--src/widgets/CMakeLists.txt65
-rw-r--r--src/xml/CMakeLists.txt44
7 files changed, 176 insertions, 0 deletions
diff --git a/src/trace/CMakeLists.txt b/src/trace/CMakeLists.txt
new file mode 100644
index 000000000..046eeece3
--- /dev/null
+++ b/src/trace/CMakeLists.txt
@@ -0,0 +1,24 @@
+SET(trace_SRC
+filterset.cpp
+filterset.h
+imagemap.cpp
+imagemap.h
+imagemap-gdk.cpp
+imagemap-gdk.h
+pool.h
+quantize.cpp
+quantize.h
+siox.cpp
+siox.h
+trace.cpp
+trace.h
+${trace_potrace_SRC}
+)
+# Add New folders in src folder here
+SET(tracefolders
+potrace
+)
+
+FOREACH(tracedirlist ${tracefolders})
+ADD_SUBDIRECTORY(${tracedirlist})
+ENDFOREACH(tracedirlist) \ No newline at end of file
diff --git a/src/trace/potrace/CMakeLists.txt b/src/trace/potrace/CMakeLists.txt
new file mode 100644
index 000000000..8bfa163b6
--- /dev/null
+++ b/src/trace/potrace/CMakeLists.txt
@@ -0,0 +1,20 @@
+SET(trace_potrace_SRC
+auxiliary.h
+bitmap.h
+curve.cpp
+curve.h
+decompose.cpp
+decompose.h
+greymap.cpp
+greymap.h
+inkscape-potrace.cpp
+inkscape-potrace.h
+lists.h
+potracelib.cpp
+potracelib.h
+progress.h
+render.cpp
+render.h
+trace.cpp
+trace.h
+) \ No newline at end of file
diff --git a/src/traits/CMakeLists.txt b/src/traits/CMakeLists.txt
new file mode 100644
index 000000000..fe5d9889b
--- /dev/null
+++ b/src/traits/CMakeLists.txt
@@ -0,0 +1,2 @@
+SET(traits_SRC
+)
diff --git a/src/utest/CMakeLists.txt b/src/utest/CMakeLists.txt
new file mode 100644
index 000000000..f0185d834
--- /dev/null
+++ b/src/utest/CMakeLists.txt
@@ -0,0 +1,2 @@
+SET(utest_SRC
+)
diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt
new file mode 100644
index 000000000..85aebb57a
--- /dev/null
+++ b/src/util/CMakeLists.txt
@@ -0,0 +1,19 @@
+SET(util_SRC
+enums.h
+filter-list.h
+fixed_point.h
+format.h
+forward-pointer-iterator.h
+glib-list-iterators.h
+list.h
+list-container.h
+list-container-test.cpp
+map-list.h
+mathfns.h
+reverse-list.h
+share.cpp
+share.h
+tuple.h
+units.cpp
+units.h
+) \ No newline at end of file
diff --git a/src/widgets/CMakeLists.txt b/src/widgets/CMakeLists.txt
new file mode 100644
index 000000000..512d40b10
--- /dev/null
+++ b/src/widgets/CMakeLists.txt
@@ -0,0 +1,65 @@
+SET(widgets_SRC
+button.cpp
+button.h
+calligraphic-profile-rename.cpp
+calligraphic-profile-rename.h
+dash-selector.cpp
+dash-selector.h
+desktop-widget.cpp
+desktop-widget.h
+font-selector.cpp
+font-selector.h
+gradient-image.cpp
+gradient-image.h
+gradient-selector.cpp
+gradient-selector.h
+gradient-toolbar.cpp
+gradient-toolbar.h
+gradient-vector.cpp
+gradient-vector.h
+icon.cpp
+icon.h
+layer-selector.cpp
+layer-selector.h
+paint-selector.cpp
+paint-selector.h
+ruler.cpp
+ruler.h
+select-toolbar.cpp
+select-toolbar.h
+shrink-wrap-button.cpp
+shrink-wrap-button.h
+sp-color-gtkselector.cpp
+sp-color-gtkselector.h
+sp-color-icc-selector.cpp
+sp-color-icc-selector.h
+sp-color-notebook.cpp
+sp-color-notebook.h
+sp-color-preview.cpp
+sp-color-preview.h
+sp-color-scales.cpp
+sp-color-scales.h
+sp-color-selector.cpp
+sp-color-selector.h
+sp-color-slider.cpp
+sp-color-slider.h
+sp-color-wheel.cpp
+sp-color-wheel.h
+sp-color-wheel-selector.cpp
+sp-color-wheel-selector.h
+spinbutton-events.cpp
+spinbutton-events.h
+sp-widget.cpp
+sp-widget.h
+spw-utilities.cpp
+spw-utilities.h
+sp-xmlview-attr-list.cpp
+sp-xmlview-attr-list.h
+sp-xmlview-content.cpp
+sp-xmlview-content.h
+sp-xmlview-tree.cpp
+sp-xmlview-tree.h
+toolbox.cpp
+toolbox.h
+widget-sizes.h
+) \ No newline at end of file
diff --git a/src/xml/CMakeLists.txt b/src/xml/CMakeLists.txt
new file mode 100644
index 000000000..23cb7e9ad
--- /dev/null
+++ b/src/xml/CMakeLists.txt
@@ -0,0 +1,44 @@
+SET(xml_SRC
+attribute-record.h
+comment-node.h
+composite-node-observer.cpp
+composite-node-observer.h
+croco-node-iface.cpp
+croco-node-iface.h
+document.h
+element-node.h
+event.cpp
+event.h
+event-fns.h
+invalid-operation-exception.h
+log-builder.cpp
+log-builder.h
+node.h
+node-event-vector.h
+node-fns.cpp
+node-fns.h
+node-iterators.h
+node-observer.h
+pi-node.h
+quote.cpp
+quote.h
+quote-test.cpp
+quote-test.h
+repr.cpp
+repr.h
+repr-action-test.cpp
+repr-action-test.h
+repr-css.cpp
+repr-io.cpp
+repr-sorting.cpp
+repr-sorting.h
+repr-util.cpp
+simple-document.cpp
+simple-document.h
+simple-node.cpp
+simple-node.h
+sp-css-attr.h
+subtree.cpp
+subtree.h
+text-node.h
+) \ No newline at end of file