aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 18:59:32 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 18:14:00 -0400
commit1eccbe4355685b322194df72b5de2382d5290b3b (patch)
tree0677b5c2f577a5024c351a164527f4bdd91a639b /plugins
parentd4a970f6962dda28133290194832b726b566ddab (diff)
downloadlv2-1eccbe4355685b322194df72b5de2382d5290b3b.tar.xz
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.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/meson.build4
1 files changed, 2 insertions, 2 deletions
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@',