From d4a970f6962dda28133290194832b726b566ddab Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jul 2022 18:59:06 -0400 Subject: Switch to meson build system --- lv2/state/meson.build | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lv2/state/meson.build (limited to 'lv2/state') diff --git a/lv2/state/meson.build b/lv2/state/meson.build new file mode 100644 index 0000000..7914797 --- /dev/null +++ b/lv2/state/meson.build @@ -0,0 +1,40 @@ +# Copyright 2022 David Robillard +# SPDX-License-Identifier: CC0-1.0 OR ISC + +name = 'state' +path = 'ns' / 'ext' / 'state' + +state_data = files( + 'state.meta.ttl', + 'state.ttl', + 'manifest.ttl', +) + +headers = files( + 'state.h', +) + +# Install specification bundle +install_data(state_data, install_dir: lv2dir / name + '.lv2') +install_headers(headers, subdir: 'lv2' / name) +if get_option('old_headers') + install_headers(headers, subdir: 'lv2' / 'lv2plug.in' / path) +endif + +# Build documentation +if build_docs + lv2_state_docs = custom_target( + name + '.html', + command: lv2specgen_command_prefix + [ + '--docdir=../../html', + '--style-uri=../../aux/style.css', + '@INPUT@', + '@OUTPUT@', + ], + depends: doc_deps, + input: files('state.ttl'), + install: true, + install_dir: lv2_docdir / 'ns' / 'ext', + output: name + '.html', + ) +endif -- cgit v1.2.1