summaryrefslogtreecommitdiffstats
path: root/src/libvpsc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libvpsc')
-rw-r--r--src/libvpsc/meson.build34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/libvpsc/meson.build b/src/libvpsc/meson.build
deleted file mode 100644
index 7e2dc3fd5..000000000
--- a/src/libvpsc/meson.build
+++ /dev/null
@@ -1,34 +0,0 @@
-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)