[Tests/Meson] Add missing line continuation
authorWook Song <wook16.song@samsung.com>
Mon, 21 Oct 2019 15:10:35 +0000 (00:10 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 24 Oct 2019 15:41:41 +0000 (00:41 +0900)
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>
tests/meson.build

index 7b5b1e5..07be85f 100644 (file)
@@ -98,9 +98,11 @@ endif
 
 # 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