forked from nnstreamer/nntrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
27 lines (25 loc) · 1.45 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
25
26
27
option('platform', type: 'combo', choices: ['none', 'tizen', 'yocto'], value: 'none')
option('enable-blas', type: 'boolean', value: true)
option('enable-cublas', type: 'boolean', value: false)
option('enable-app', type: 'boolean', value: true)
option('install-app', type: 'boolean', value: true)
option('use_gym', type: 'boolean', value: false)
option('enable-capi', type: 'boolean', value: true)
option('enable-ccapi', type: 'boolean', value: true)
option('enable-test', type: 'boolean', value: true)
option('enable-logging', type: 'boolean', value: true)
option('enable-tizen-feature-check', type: 'boolean', value: true)
option('enable-nnstreamer-tensor-filter', type: 'boolean', value: true)
option('enable-nnstreamer-backbone', type: 'boolean', value: true)
option('enable-tflite-backbone', type: 'boolean', value: true)
option('enable-android', type: 'boolean', value: false)
option('enable-profile', type: 'boolean', value: false)
option('enable-tflite-interpreter', type: 'boolean', value: true)
# dependency conflict resolution
option('capi-ml-inference-actual', type: 'string', value: 'capi-ml-inference',
description: 'backward compatible dependency name of capi-ml-inference')
option('capi-ml-common-actual', type: 'string', value: 'capi-ml-common',
description: 'backward compatible dependency name of capi-ml-common')
# test related option
option('reduce-tolerance', type: 'boolean', value: true)
option('enable-long-test', type: 'boolean', value: false)