[Build] default build option of python
authorJaeyun <jy1210.jung@samsung.com>
Thu, 23 Jan 2020 07:54:05 +0000 (16:54 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 29 Jan 2020 05:24:03 +0000 (14:24 +0900)
disable default build option of python.

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
debian/rules
meson_options.txt

index 4190919..9941a45 100755 (executable)
@@ -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
index 49230ab..d9b7210 100644 (file)
@@ -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: '')