summaryrefslogtreecommitdiffstats
path: root/src/libvpsc
diff options
context:
space:
mode:
authorFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-16 21:00:39 +0000
committerFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-17 20:54:37 +0000
commitf00d6630b8a63c617b662ceb5a1f3c8252512343 (patch)
tree584e37da7946b1472a4fce45d887fae6ec557060 /src/libvpsc
parent[meson-build] libavoid (diff)
downloadinkscape-f00d6630b8a63c617b662ceb5a1f3c8252512343.tar.gz
inkscape-f00d6630b8a63c617b662ceb5a1f3c8252512343.zip
[meson-build] libvpsc
Diffstat (limited to 'src/libvpsc')
-rw-r--r--src/libvpsc/meson.build34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/libvpsc/meson.build b/src/libvpsc/meson.build
new file mode 100644
index 000000000..7e2dc3fd5
--- /dev/null
+++ b/src/libvpsc/meson.build
@@ -0,0 +1,34 @@
+libvpsc_sources = files([
+ 'block.cpp',
+ 'blocks.cpp',
+ 'cbuffer.cpp',
+ 'constraint.cpp',
+ 'rectangle.cpp',
+ 'solve_VPSC.cpp',
+ 'variable.cpp'
+])
+
+libvpsc_headers = files([
+ 'assertions.h',
+ 'block.h',
+ 'blocks.h',
+ 'cbuffer.h',
+ 'constraint.h',
+ 'exceptions.h',
+ 'isnan.h',
+ 'linesegment.h',
+ 'pairing_heap.h',
+ 'rectangle.h',
+ 'solve_VPSC.h',
+ 'variable.h'
+])
+
+libvpsc_deps = []
+
+libvpsc = static_library('libvpsc',
+ sources: [libvpsc_sources,
+ libvpsc_headers],
+ dependencies: libvpsc_deps,
+ include_directories: [srcinc, confinc])
+
+libvpsc_dep = declare_dependency(link_with : libvpsc)