diff options
author | David Robillard <d@drobilla.net> | 2025-01-20 13:12:45 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-20 13:12:45 -0500 |
commit | 7113dafb0a8bcea19d3c7961b52538dd07726937 (patch) | |
tree | 2729d212d000ba0c52885dc9ddd8db08c5071992 /plugins/eg-sampler.lv2 | |
parent | 79c318c7efffeee46ed301d1fc4724ac90ff03a8 (diff) | |
download | lv2-7113dafb0a8bcea19d3c7961b52538dd07726937.tar.xz |
Use "system" include type for all dependencies
Things get confused when these flags differ across projects, so universally use
"system" for external dependencies.
Diffstat (limited to 'plugins/eg-sampler.lv2')
-rw-r--r-- | plugins/eg-sampler.lv2/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/eg-sampler.lv2/meson.build b/plugins/eg-sampler.lv2/meson.build index 9700df2..fe81918 100644 --- a/plugins/eg-sampler.lv2/meson.build +++ b/plugins/eg-sampler.lv2/meson.build @@ -8,12 +8,14 @@ data_filenames = ['manifest.ttl.in', 'sampler.ttl', 'click.wav'] samplerate_dep = dependency( 'samplerate', + include_type: 'system', required: get_option('plugins'), version: '>= 0.1.0', ) sndfile_dep = dependency( 'sndfile', + include_type: 'system', required: get_option('plugins'), version: '>= 1.0.0', ) |