diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ipa/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ipa/meson.build b/src/ipa/meson.build index 5b5684a1..49245e5e 100644 --- a/src/ipa/meson.build +++ b/src/ipa/meson.build @@ -19,14 +19,15 @@ subdir('libipa') ipa_sign = files('ipa-sign.sh') -ipas = ['ipu3', 'raspberrypi', 'rkisp1', 'vimc'] ipa_names = [] +ipa_modules = get_option('ipas') + # The ipa-sign-install.sh script which uses the ipa_names variable will itself # prepend MESON_INSTALL_DESTDIR_PREFIX to each ipa module name, therefore we # must not include the prefix string here. foreach pipeline : pipelines - if ipas.contains(pipeline) + if ipa_modules.contains(pipeline) subdir(pipeline) ipa_names += ipa_install_dir / ipa_name + '.so' endif |