From 1eccbe4355685b322194df72b5de2382d5290b3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jul 2022 18:59:32 -0400 Subject: Rearrange source tree to be directly usable by dependants This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows. --- plugins/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/meson.build b/plugins/meson.build index ee114ef..08b3feb 100644 --- a/plugins/meson.build +++ b/plugins/meson.build @@ -68,9 +68,9 @@ if not get_option('docs').disabled() build_by_default: true, command: [ asciidoc, - '-a', 'stylesdir=' + lv2_source_root / 'doc', + '-a', 'stylesdir=' + lv2_source_root / 'doc' / 'style', '-a', 'source-highlighter=pygments', - '-a', 'pygments-style=' + lv2_source_root / 'doc' / 'style.css', + '-a', 'pygments-style=' + lv2_source_root / 'doc' / 'style' / 'style.css', '-b', 'html', '-o', '@OUTPUT@', '@INPUT@', -- cgit v1.2.1