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/failed_lib_descriptor.lv2/meson.build | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/failed_lib_descriptor.lv2/meson.build (limited to 'test/failed_lib_descriptor.lv2') diff --git a/test/failed_lib_descriptor.lv2/meson.build b/test/failed_lib_descriptor.lv2/meson.build new file mode 100644 index 0000000..b4c37f4 --- /dev/null +++ b/test/failed_lib_descriptor.lv2/meson.build @@ -0,0 +1,24 @@ +module = shared_module('failed_lib_descriptor', + 'failed_lib_descriptor.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', 'failed_lib_descriptor.ttl'] + +foreach f : ttl_files + configure_file(input: f + '.in', + output: f, + configuration: config) +endforeach + +test('failed_lib_descriptor', + executable('test_failed_lib_descriptor', + 'test_failed_lib_descriptor.c', + c_args: prog_args, + dependencies: [lv2_dep, lilv_static_dep]), + args: [meson.current_build_dir() / ''], + suite: 'plugin') + -- cgit v1.2.1