diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-12 16:48:47 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-12 16:48:47 +0200 |
commit | db3c17a18f54787f94d7e1c71b84945c6038bf79 (patch) | |
tree | 5a3f04eaf20bcb6bc210899ea151ef264dc5eb32 | |
parent | 99f75a4ed857d3f28db7a17aac964f824c24020f (diff) | |
download | canvas_display.lv2-db3c17a18f54787f94d7e1c71b84945c6038bf79.tar.xz |
meson: check for sord_validate.
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | meson.build | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1 +1 @@ -0.1.415 +0.1.429 diff --git a/meson.build b/meson.build index 2e26e91..694bf96 100644 --- a/meson.build +++ b/meson.build @@ -37,6 +37,7 @@ add_project_arguments('-DPUGL_HAVE_GL', language : '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@'] @@ -114,7 +115,7 @@ ui_ttl = custom_target('ui_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, ui_ttl]) endif |