aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-amp.lv2/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/eg-amp.lv2/meson.build')
-rw-r--r--plugins/eg-amp.lv2/meson.build42
1 files changed, 0 insertions, 42 deletions
diff --git a/plugins/eg-amp.lv2/meson.build b/plugins/eg-amp.lv2/meson.build
deleted file mode 100644
index 2912e3f..0000000
--- a/plugins/eg-amp.lv2/meson.build
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2022 David Robillard <d@drobilla.net>
-# SPDX-License-Identifier: 0BSD OR ISC
-
-plugin_sources = files('amp.c')
-bundle_name = 'eg-amp.lv2'
-data_filenames = ['manifest.ttl.in', 'amp.ttl']
-
-module = shared_library(
- 'amp',
- plugin_sources,
- c_args: c_suppressions,
- dependencies: [lv2_dep, m_dep],
- gnu_symbol_visibility: 'hidden',
- implicit_include_directories: false,
- install: true,
- install_dir: lv2dir / bundle_name,
- name_prefix: '',
-)
-
-config = configuration_data(
- {
- 'LIB_EXT': '.' + module.full_path().split('.')[-1],
- },
-)
-
-foreach filename : data_filenames
- if filename.endswith('.in')
- configure_file(
- configuration: config,
- input: files(filename),
- install_dir: lv2dir / bundle_name,
- output: filename.substring(0, -3),
- )
- else
- configure_file(
- copy: true,
- input: files(filename),
- install_dir: lv2dir / bundle_name,
- output: filename,
- )
- endif
-endforeach