diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-12 19:16:40 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-12 19:16:40 +0200 |
commit | 3f45a79c0d7fe571f4e3a8e54f436ce4b9f13fc3 (patch) | |
tree | 069b46b02818a9d47bc4a174639a1203c50fd0a1 | |
parent | d8d9e7969f01af089bbc7ef5930dfa02c4fe83f0 (diff) | |
download | moony.lv2-3f45a79c0d7fe571f4e3a8e54f436ce4b9f13fc3.tar.xz |
Squashed 'timely.lv2/' changes from d4d4ad85..3846b5a5
3846b5a5 meson: check for sord_validate.
git-subtree-dir: timely.lv2
git-subtree-split: 3846b5a5098dc72a83b7a4dd37c7a3bc9e7aafde
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | meson.build | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1 +1 @@ -0.1.45 +0.1.47 diff --git a/meson.build b/meson.build index 4dbff9d..df8d684 100644 --- a/meson.build +++ b/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 |