In the meson build script, there are missing line continuations that
break building. This patch fixes this issue.
Related to https://github.com/mesonbuild/meson/issues/4720
See also: https://github.com/mesonbuild/meson/commit/
90c9b868b20b11bb089fc5e0c634d5ed76fea0cb
Signed-off-by: Wook Song <wook16.song@samsung.com>
# Install data required for unittest
unittest_tests_install_dir = join_paths(unittest_install_dir,'tests')
-tensor_filter_ext_enabled = get_option('enable-tensorflow-lite') or
- get_option('enable-python') or get_option('enable-tensorflow') or
+
+tensor_filter_ext_enabled = get_option('enable-tensorflow-lite') or \
+ get_option('enable-python') or get_option('enable-tensorflow') or \
get_option('enable-pytorch') or get_option('enable-caffe2')
+
if get_option('install-test') and (get_option('enable-capi') or tensor_filter_ext_enabled)
install_subdir('test_models', install_dir: unittest_tests_install_dir)
endif