diff options
author | David Robillard <d@drobilla.net> | 2022-11-19 17:38:57 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-11-19 17:38:57 -0500 |
commit | eb11a184a0261b5257579c07c02a382c63b82e30 (patch) | |
tree | d3d05714038c359108868bb3d164ff5f377323eb | |
parent | 3c0113ee6fb96209a09f67cd4ef08623ffa90825 (diff) | |
download | jalv-eb11a184a0261b5257579c07c02a382c63b82e30.tar.gz jalv-eb11a184a0261b5257579c07c02a382c63b82e30.tar.bz2 jalv-eb11a184a0261b5257579c07c02a382c63b82e30.zip |
Set up dependencies in parent-first order
This ensures that the fallback options here get used, rather than a fallback in
another subproject getting to it first.
-rw-r--r-- | meson.build | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meson.build b/meson.build index 009757e..c2130c4 100644 --- a/meson.build +++ b/meson.build @@ -94,26 +94,26 @@ lv2_dep = dependency( version: '>= 1.18.0', ) -lilv_dep = dependency( - 'lilv-0', +sratom_dep = dependency( + 'sratom-0', default_options: [ - 'bindings_py=disabled', 'docs=disabled', 'tests=disabled', - 'tools=disabled', ], - fallback: ['lilv', 'lilv_dep'], - version: '>= 0.24.0', + fallback: ['sratom', 'sratom_dep'], + version: '>= 0.6.4', ) -sratom_dep = dependency( - 'sratom-0', +lilv_dep = dependency( + 'lilv-0', default_options: [ + 'bindings_py=disabled', 'docs=disabled', 'tests=disabled', + 'tools=disabled', ], - fallback: ['sratom', 'sratom_dep'], - version: '>= 0.6.4', + fallback: ['lilv', 'lilv_dep'], + version: '>= 0.24.0', ) suil_dep = dependency( |