diff options
| author | Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org> | 2018-03-17 21:50:20 +0000 |
|---|---|---|
| committer | Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org> | 2018-03-17 21:54:02 +0000 |
| commit | 582075ad8d9c6fdb4178d7f5bb8686b4d257e421 (patch) | |
| tree | a3902949c1db53a74624d96bd833b739f22dfc45 /src/libcroco | |
| parent | First successful build of Inkscape using the new/experimental meson-build sys... (diff) | |
| download | inkscape-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/libcroco')
| -rw-r--r-- | src/libcroco/meson.build | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/libcroco/meson.build b/src/libcroco/meson.build deleted file mode 100644 index ffd4734aa..000000000 --- a/src/libcroco/meson.build +++ /dev/null @@ -1,74 +0,0 @@ -libcroco_sources = files([ - 'cr-additional-sel.c', - 'cr-attr-sel.c', - 'cr-cascade.c', - 'cr-declaration.c', - 'cr-doc-handler.c', - 'cr-enc-handler.c', - 'cr-fonts.c', - 'cr-input.c', - 'cr-libxml-node-iface.c', - 'cr-num.c', - 'cr-om-parser.c', - 'cr-parser.c', - 'cr-parsing-location.c', - 'cr-prop-list.c', - 'cr-pseudo.c', - 'cr-rgb.c', - 'cr-selector.c', - 'cr-sel-eng.c', - 'cr-simple-sel.c', - 'cr-statement.c', - 'cr-string.c', - 'cr-style.c', - 'cr-stylesheet.c', - 'cr-term.c', - 'cr-tknzr.c', - 'cr-token.c', - 'cr-utils.c' -]) - -libcroco_headers = files([ - 'cr-additional-sel.h', - 'cr-attr-sel.h', - 'cr-cascade.h', - 'cr-declaration.h', - 'cr-doc-handler.h', - 'cr-enc-handler.h', - 'cr-fonts.h', - 'cr-input.h', - 'cr-libxml-node-iface.h', - 'cr-node-iface.h', - 'cr-num.h', - 'cr-om-parser.h', - 'cr-parser.h', - 'cr-parsing-location.h', - 'cr-prop-list.h', - 'cr-pseudo.h', - 'cr-rgb.h', - 'cr-sel-eng.h', - 'cr-selector.h', - 'cr-simple-sel.h', - 'cr-statement.h', - 'cr-string.h', - 'cr-style.h', - 'cr-stylesheet.h', - 'cr-term.h', - 'cr-tknzr.h', - 'cr-token.h', - 'cr-utils.h', - 'libcroco.h' -]) - -libcroco_deps = [ - glib_dep, - xml2_dep -] - -libcroco = static_library('libcroco', - sources: [libcroco_sources, - libcroco_headers], - dependencies: libcroco_deps, - include_directories: [srcinc, confinc]) - -libcroco_dep = declare_dependency(link_with : libcroco) |
