Browse Source

use /lib/lv2 as the default plugin dir

master
Alexandros Theodotou 3 years ago
parent
commit
1f2a4b517a
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 4
      meson.build
  2. 6
      meson_options.txt

4
meson.build

@ -46,9 +46,7 @@ elif host_machine.system() == 'windows' @@ -46,9 +46,7 @@ elif host_machine.system() == 'windows'
endif
prefix = get_option('prefix')
bindir = join_paths(prefix, get_option('bindir'))
libdir = join_paths(prefix, get_option ('libdir'))
lv2dir = join_paths(libdir, 'lv2')
lv2dir = join_paths(prefix, get_option('lv2dir'))
zlfodir = join_paths(lv2dir, 'ZLFO.lv2')
zlfo_cdata = configuration_data ()

6
meson_options.txt

@ -20,3 +20,9 @@ option ( @@ -20,3 +20,9 @@ option (
type: 'boolean',
value: false,
description: 'Enable strict compilation flags')
option (
'lv2dir',
type: 'string',
value: 'lib/lv2',
description: 'LV2 installation dir under the prefix')

Loading…
Cancel
Save