summaryrefslogtreecommitdiffstats
path: root/src/libcola
diff options
context:
space:
mode:
authorFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-16 20:31:05 +0000
committerFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-17 20:54:37 +0000
commit1c9b7af1b5bf313204ba81b733106bf3adc21159 (patch)
treea6ce8396b99d59c5a2af684f2856163558077c8f /src/libcola
parent[meson-build] spobject filters (diff)
downloadinkscape-1c9b7af1b5bf313204ba81b733106bf3adc21159.tar.gz
inkscape-1c9b7af1b5bf313204ba81b733106bf3adc21159.zip
[meson-build] libcola
Diffstat (limited to 'src/libcola')
-rw-r--r--src/libcola/meson.build37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/libcola/meson.build b/src/libcola/meson.build
new file mode 100644
index 000000000..7543b4124
--- /dev/null
+++ b/src/libcola/meson.build
@@ -0,0 +1,37 @@
+libcola_sources = files([
+ 'box.cpp',
+ 'cluster.cpp',
+ 'cola.cpp',
+ 'convex_hull.cpp',
+ 'compound_constraints.cpp',
+ 'conjugate_gradient.cpp',
+ 'connected_components.cpp',
+ 'gradient_projection.cpp',
+ 'shapepair.cpp',
+ 'straightener.cpp'
+])
+
+libcola_headers = files([
+ 'box.h',
+ 'cluster.h',
+ 'cola.h',
+ 'compound_constraints.h',
+ 'conjugate_gradient.h',
+ 'convex_hull.h',
+ 'gradient_projection.h',
+ 'shapepair.cpp',
+ 'shortest_paths.h',
+ 'straightener.h'
+])
+
+libcola_deps = [
+
+]
+
+libcola = static_library('libcola',
+ sources: [libcola_sources,
+ libcola_headers],
+ dependencies: libcola_deps,
+ include_directories: [srcinc, confinc])
+
+libcola_dep = declare_dependency(link_with : libcola)