From 52cd7ee00e64a021128034da5855a88be52f0871 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 11 Jan 2021 02:35:06 +0100 Subject: WIP: Switch to Meson --- test/missing_port.lv2/meson.build | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/missing_port.lv2/meson.build (limited to 'test/missing_port.lv2/meson.build') diff --git a/test/missing_port.lv2/meson.build b/test/missing_port.lv2/meson.build new file mode 100644 index 0000000..c3f5461 --- /dev/null +++ b/test/missing_port.lv2/meson.build @@ -0,0 +1,24 @@ +module = shared_module('missing_port', + 'missing_port.c', + dependencies: lv2_dep, + gnu_symbol_visibility: 'hidden', + name_prefix: '') + +extension = '.' + module.full_path().split('.')[-1] +config = configuration_data({'SHLIB_EXT': extension}) +ttl_files = ['manifest.ttl', 'missing_port.ttl'] + +foreach f : ttl_files + configure_file(input: f + '.in', + output: f, + configuration: config) +endforeach + +test('missing_port', + executable('test_missing_port', + 'test_missing_port.c', + c_args: prog_args, + dependencies: [lv2_dep, lilv_static_dep]), + args: [meson.current_build_dir() / ''], + suite: 'plugin') + -- cgit v1.2.1