summaryrefslogtreecommitdiffstats
path: root/src/svg
diff options
context:
space:
mode:
authorFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-17 21:50:20 +0000
committerFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-17 21:54:02 +0000
commit582075ad8d9c6fdb4178d7f5bb8686b4d257e421 (patch)
treea3902949c1db53a74624d96bd833b739f22dfc45 /src/svg
parentFirst successful build of Inkscape using the new/experimental meson-build sys... (diff)
downloadinkscape-582075ad8d9c6fdb4178d7f5bb8686b4d257e421.tar.gz
inkscape-582075ad8d9c6fdb4178d7f5bb8686b4d257e421.zip
Removing sample meson build files.
These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY
Diffstat (limited to 'src/svg')
-rw-r--r--src/svg/meson.build44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/svg/meson.build b/src/svg/meson.build
deleted file mode 100644
index 59243c89a..000000000
--- a/src/svg/meson.build
+++ /dev/null
@@ -1,44 +0,0 @@
-svg_sources = files([
- 'css-ostringstream.cpp',
- 'path-string.cpp',
-# 'sp-svg.def',
- 'stringstream.cpp',
- 'strip-trailing-zeros.cpp',
- 'svg-affine.cpp',
- 'svg-color.cpp',
- 'svg-angle.cpp',
- 'svg-length.cpp',
- 'svg-path.cpp'
-# 'test-stubs.cpp'
-])
-
-svg_headers = files([
- 'css-ostringstream-test.h',
- 'css-ostringstream.h',
- 'path-string.h',
- 'stringstream-test.h',
- 'stringstream.h',
- 'strip-trailing-zeros.h',
- 'svg-affine-test.h',
- 'svg-color-test.h',
- 'svg-color.h',
- 'svg-icc-color.h',
- 'svg-angle.h',
- 'svg-length-test.h',
- 'svg-length.h',
- 'svg-path-geom-test.h',
- 'svg.h'
-# 'test-stubs.h'
-])
-
-svg_deps = [
- glibmm_dep
-]
-
-libsvg = static_library('libsvg',
- sources: [svg_sources,
- svg_headers],
- dependencies: svg_deps,
- include_directories: [srcinc, confinc])
-
-libsvg_dep = declare_dependency(link_with : libsvg)