summaryrefslogtreecommitdiffstats
path: root/src/inkgc
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/inkgc
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/inkgc')
-rw-r--r--src/inkgc/meson.build26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/inkgc/meson.build b/src/inkgc/meson.build
deleted file mode 100644
index c658b1c88..000000000
--- a/src/inkgc/meson.build
+++ /dev/null
@@ -1,26 +0,0 @@
-inkgc_sources = files([
- 'gc.cpp'
-])
-
-inkgc_headers = files([
- 'gc-alloc.h',
- '../gc-anchored.h',
- 'gc-core.h',
- 'gc-managed.h',
- 'gc-soft-ptr.h'
-])
-
-inkgc_deps = [
- glib_dep,
- glibmm_dep,
- sigcpp_dep,
- boehmgc_dep
-]
-
-libinkgc = static_library('inkgc',
- sources: [inkgc_sources,
- inkgc_headers],
- dependencies: inkgc_deps,
- include_directories: [srcinc, confinc])
-
-libinkgc_dep = declare_dependency(link_with : libinkgc)