-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeson_options.txt
24 lines (22 loc) · 1.51 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (C) 2020 RidgeRun, LLC (http://www.ridgerun.com)
# Feature options
option('enable-tests', type : 'feature', value : 'enabled', yield : true, description : 'Build tests')
option('enable-examples', type : 'feature', value : 'enabled', yield : true, description : 'Build examples')
option('enable-docs', type : 'feature', value : 'enabled', yield : true, description : 'Build documentation with Doxygen')
# Enable support for different backends
option('enable-coral', type : 'boolean', value: false,
description : 'Enable Coral from Google backend support. This backend needs to have the TFLite backend enabled.')
option('enable-tensorflow', type : 'boolean', value: false,
description : 'Enable Tensorflow backend support')
option('enable-tflite', type : 'boolean', value: false,
description : 'Enable Tensorflow Lite backend support')
option('enable-tensorrt', type : 'boolean', value: false,
description : 'Enable TensorRT backend support')
option('enable-onnxrt', type : 'boolean', value: false,
description : 'Enable ONNX Runtime backend support')
option('enable-onnxrt-acl', type : 'boolean', value: false,
description : 'Enable ONNX Runtime backend with ACL execution provider support')
option('enable-onnxrt-openvino', type : 'boolean', value: false,
description : 'Enable ONNX Runtime backend with OpenVINO execution provider support')
option('enable-nnapi', type : 'boolean', value : false,
description : 'Enable NNAPI delegate for NPU inference execution support')