summaryrefslogtreecommitdiffstats
path: root/src/helper
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/helper
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/helper')
-rw-r--r--src/helper/meson.build59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/helper/meson.build b/src/helper/meson.build
deleted file mode 100644
index 115a4deb8..000000000
--- a/src/helper/meson.build
+++ /dev/null
@@ -1,59 +0,0 @@
-helper_sources = files([
- 'action.cpp',
- 'action-context.cpp',
- 'geom.cpp',
- 'geom-nodetype.cpp',
- 'geom-pathstroke.cpp',
- 'geom-pathvectorsatellites.cpp',
- 'geom-satellite.cpp',
- 'gettext.cpp',
- 'pixbuf-ops.cpp',
- 'png-write.cpp',
- 'stock-items.cpp',
-#units-test.cpp',
- 'window.cpp'
-])
-
-helper_headers = files([
- 'action.h',
- 'action-context.h',
- 'geom-curves.h',
- 'geom-nodetype.h',
- 'geom-pathstroke.h',
- 'geom-pathvectorsatellites.h',
- 'geom-satellite.h',
- 'geom.h',
- 'gettext.h',
- 'mathfns.h',
- 'pixbuf-ops.h',
- 'png-write.h',
- 'stock-items.h',
- 'window.h'
-])
-
-marshallers = gnome.genmarshal('sp-marshal',
- sources : 'sp-marshal.list',
- prefix : 'sp_marshal',
- extra_args : ['-UG_ENABLE_DEBUG', '--prototypes'])
-
-marshallers_c = marshallers[0]
-marshallers_h = marshallers[1]
-
-helper_deps = [
- glibmm_dep,
- cairomm_dep,
- gtkmm_dep,
- xml2_dep,
- png_dep,
- gobject_dep
-]
-
-lib_helper = static_library('helper',
- sources: [helper_sources,
- helper_headers,
- marshallers_c,
- marshallers_h],
- dependencies: helper_deps,
- include_directories: [confinc, srcinc])
-
-libhelper_dep = declare_dependency(link_with : lib_helper)