diff options
Diffstat (limited to 'timely.lv2')
-rw-r--r-- | timely.lv2/VERSION | 2 | ||||
-rw-r--r-- | timely.lv2/meson.build | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/timely.lv2/VERSION b/timely.lv2/VERSION index 6ee33ba..9506d14 100644 --- a/timely.lv2/VERSION +++ b/timely.lv2/VERSION @@ -1 +1 @@ -0.1.45 +0.1.47 diff --git a/timely.lv2/meson.build b/timely.lv2/meson.build index 4dbff9d..df8d684 100644 --- a/timely.lv2/meson.build +++ b/timely.lv2/meson.build @@ -12,6 +12,7 @@ cc = meson.get_compiler('c') cp = find_program('cp') lv2_validate = find_program('lv2_validate', native : true, required : false) +sord_validate = find_program('sord_validate', native : true, required : false) lv2lint = find_program('lv2lint', required : false) clone = [cp, '@INPUT@', '@OUTPUT@'] @@ -54,7 +55,7 @@ dsp_ttl = custom_target('timely_ttl', install : true, install_dir : inst_dir) -if lv2_validate.found() +if lv2_validate.found() and sord_validate.found() test('LV2 validate', lv2_validate, args : [manifest_ttl, dsp_ttl]) endif |