filter::python3: do not break converter/decoder
[platform/upstream/nnstreamer.git] / meson_options.txt
1 # features
2 option('video-support', type: 'feature', value: 'enabled')
3 option('audio-support', type: 'feature', value: 'enabled')
4 option('tf-support', type: 'feature', value: 'auto')
5 option('tflite-support', type: 'feature', value: 'auto')
6 option('tflite2-support', type: 'feature', value: 'auto')
7 option('tflite2-custom-support', type: 'feature', value: 'auto') # requires tflite2-support!
8 option('pytorch-support', type: 'feature', value: 'auto')
9 option('caffe2-support', type: 'feature', value: 'auto')
10 option('deepview-rt-support', type: 'feature', value: 'auto')
11 option('python3-support', type: 'feature', value: 'auto')
12 option('mvncsdk2-support', type: 'feature', value: 'auto')
13 # nnfw-runtime ( details in https://review.tizen.org/gerrit/p/platform/core/ml/nnfw )
14 option('nnfw-runtime-support', type: 'feature', value: 'auto')
15 option('armnn-support', type: 'feature', value: 'auto')
16 option('orcc-support', type: 'feature', value: 'auto')
17 option('snpe-support', type: 'feature', value: 'auto')
18 option('protobuf-support', type: 'feature', value: 'auto')
19 option('flatbuf-support', type: 'feature', value: 'auto')
20 option('tensorrt-support', type: 'feature', value: 'auto')
21 option('grpc-support', type: 'feature', value: 'auto')
22 option('lua-support', type: 'feature', value: 'auto')
23 option('mqtt-support', type: 'feature', value: 'auto')
24 option('tvm-support', type: 'feature', value: 'auto')
25 option('trix-engine-support', type: 'feature', value: 'auto')
26 option('nnstreamer-edge-support', type: 'feature', value: 'auto')
27 option('mxnet-support', type: 'feature', value: 'auto')
28 option('parser-support', type: 'feature', value: 'auto') # gstreamer pipeline description <--> pbtxt pipeline
29 option('datarepo-support', type: 'feature', value: 'auto', description: 'Data repository sink/src for in-pipeline training') # this required json-glib-1.0.
30 option('ml-agent-support', type: 'feature', value: 'auto')
31 option('onnxruntime-support', type: 'feature', value: 'auto')
32
33 # booleans & other options
34 option('enable-test', type: 'boolean', value: true)
35 option('install-test', type: 'boolean', value: false)
36 option('enable-pytorch-use-gpu', type: 'boolean', value: false) # default value, can be specified at run time
37 option('enable-mediapipe', type: 'boolean', value: false)
38 option('enable-env-var', type: 'boolean', value: true)
39 option('enable-symbolic-link', type: 'boolean', value: true)
40 option('enable-tizen', type: 'boolean', value: false)
41 option('tizen-version-major', type: 'integer', min : 4, max : 9999, value: 9999) # 9999 means "not Tizen"
42 option('enable-element-restriction', type: 'boolean', value: false) # true to restrict gst-elements in api
43 option('allowed-elements', type: 'string', value: '')
44 option('enable-cppfilter', type: 'boolean', value: true) # Allows C++ custom filters
45 option('enable-filter-cpp-class', type: 'boolean', value: true) # Allows to accept C++ classes as filter subplugin implementation.
46 option('enable-tizen-sensor', type: 'boolean', value: false)
47 option('enable-edgetpu', type: 'boolean', value: false)
48 option('enable-openvino', type: 'boolean', value: false)
49 option('enable-vivante', type: 'boolean', value: false)
50 option('framework-priority-tflite', type: 'string', value: 'tensorflow-lite,nnfw,armnn,edgetpu', description: 'A comma separated prioritized list of neural network frameworks to open a .tflite file')
51 option('framework-priority-nb', type: 'string', value: '', description: 'A comma separated prioritized list of neural network frameworks to open a .nb file')
52 option('framework-priority-bin', type: 'string', value: '', description: 'A comma separated prioritized list of neural network frameworks to open a .bin file')
53 option('skip-tflite-flatbuf-check', type: 'boolean', value: false, description: 'Do not check the availability of flatbuf for tensorflow-lite build. In some systems, flatbuffers\' dependency cannot be found with meson.')
54 option('trix-engine-alias', type: 'string', value: 'srnpu', description: 'The alias name list of trix-engine sub-plugin. This option provides backward compatibility of the previous framework name.')
55 option('enable-float16', type: 'boolean', value: false, description: 'Support float16 streams with GCC extensions')
56
57 # Utilities
58 option('enable-nnstreamer-check', type: 'boolean', value: true)
59 option('enable-pbtxt-converter', type: 'boolean', value: true)
60
61 # Install Paths
62 option('subplugindir', type: 'string', value: '')
63
64 # Extra configuration
65 option('extra_config_path', type: 'string', value: '')