From c751a7ed7c315a5748bd53241db88b81f97bf6df Mon Sep 17 00:00:00 2001 From: Jaeyun Date: Thu, 23 Jan 2020 16:54:05 +0900 Subject: [PATCH] [Build] default build option of python disable default build option of python. Signed-off-by: Jaeyun Jung --- debian/rules | 2 +- meson_options.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 4190919..9941a45 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ override_dh_auto_configure: mkdir -p build meson --buildtype=plain --prefix=/usr --sysconfdir=/etc --libdir=lib/$(DEB_HOST_MULTIARCH) --bindir=lib/nnstreamer/bin --includedir=include \ -Dinstall-example=true -Denable-tensorflow=$(enable_tf) -Denable-tensorflow-lite=true -Denable-pytorch=true -Denable-caffe2=true \ - -Denable-capi=true -Denable-tizen=false build + -Denable-python=true -Denable-capi=true -Denable-tizen=false build override_dh_auto_build: ninja -C build diff --git a/meson_options.txt b/meson_options.txt index 49230ab..d9b7210 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,7 +13,7 @@ option('disable-audio-support', type: 'boolean', value: false) option('enable-env-var', type: 'boolean', value: true) option('enable-symbolic-link', type: 'boolean', value: true) option('enable-capi', type: 'boolean', value: false) -option('enable-python', type: 'boolean', value: true) +option('enable-python', type: 'boolean', value: false) option('enable-tizen', type: 'boolean', value: false) option('enable-element-restriction', type: 'boolean', value: false) # true to restrict gst-elements in api option('restricted-elements', type: 'string', value: '') -- 2.7.4