x in a --> a.contains(x) in meson.build files

This commit is contained in:
Veloman Yunkan
2020-08-06 19:33:03 +04:00
committed by Matthieu Gautier
parent 18e46969b7
commit c4e6313c90
2 changed files with 6 additions and 6 deletions

View File

@ -34,13 +34,13 @@ else
kiwix_sources += 'subprocess_unix.cpp'
endif
if 'android' in wrapper
if wrapper.contains('android')
install_dir = 'kiwix-lib/jniLibs/' + meson.get_cross_property('android_abi')
else
install_dir = get_option('libdir')
endif
if 'android' in wrapper or 'java' in wrapper
if wrapper.contains('android') or wrapper.contains('java')
subdir('wrapper/java')
endif