-
Notifications
You must be signed in to change notification settings - Fork 65
/
meson_options.txt
24 lines (23 loc) · 1.11 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
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# SPDX-FileCopyrightText: Copyright 2020 Micron Technology, Inc.
option('cli', type: 'boolean', value: true,
description: 'Build the CLI')
option('experimental', type: 'boolean', value: true, yield: true,
description: 'Build the experimental parts of HSE')
option('tests', type: 'boolean', value: true,
description: 'Build and enable tests')
option('tools', type: 'feature', value: 'auto',
description: 'Build tools')
option('samples', type: 'boolean', value: true,
description: 'Build samples')
option('bindings', type: 'array', choices: ['all', 'none', 'auto', 'java', 'python'], value: ['auto'],
description: 'Build language bindings')
option('docs', type: 'feature', value: 'auto',
description: 'Build documentation')
option('omf-byte-order', type: 'combo', choices: ['native', 'big', 'little'],
value: 'native', description: 'On-media-format byte order')
option('rpath', type: 'boolean', value: false,
description: 'Add an RPATH to executables upon install')
option('pmem', type: 'feature', value: 'auto',
description: 'Include PMEM support')