summaryrefslogtreecommitdiffstats
path: root/src/debug
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/debug
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/debug')
-rw-r--r--src/debug/meson.build37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/debug/meson.build b/src/debug/meson.build
deleted file mode 100644
index 4e181beda..000000000
--- a/src/debug/meson.build
+++ /dev/null
@@ -1,37 +0,0 @@
-debug_sources = files([
- 'demangle.cpp',
- 'heap.cpp',
- 'log-display-config.cpp',
- 'logger.cpp',
- 'sysv-heap.cpp',
- 'timestamp.cpp',
- 'gdk-event-latency-tracker.cpp'
-])
-
-debug_headers = files([
- 'demangle.h',
- 'event-tracker.h',
- 'event.h',
- 'gc-heap.h',
- 'gdk-event-latency-tracker.h',
- 'heap.h',
- 'log-display-config.h',
- 'logger.h',
- 'simple-event.h',
- 'sysv-heap.h',
- 'timestamp.h'
-])
-
-
-debug_deps = [
- glibmm_dep,
- gtk_dep
-]
-
-libdebug = static_library('libdebug',
- sources: [debug_sources,
- debug_headers],
- dependencies: debug_deps,
- include_directories: [srcinc, confinc])
-
-libdebug_dep = declare_dependency(link_with : libdebug)