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 | cf5dd024f4ba2b50e04aee31f585c46e1e3d2bce (patch) | |
tree | 7a402ba9115733b8362d2ee0781b13deeebfa695 /timely.lv2 | |
parent | 2a6c55f0cd52d1bf52f6a45f48a2f82e6126e287 (diff) | |
parent | 3f45a79c0d7fe571f4e3a8e54f436ce4b9f13fc3 (diff) | |
download | moony.lv2-cf5dd024f4ba2b50e04aee31f585c46e1e3d2bce.tar.xz |
Merge commit '3f45a79c0d7fe571f4e3a8e54f436ce4b9f13fc3'
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 |