-
Notifications
You must be signed in to change notification settings - Fork 9
/
meson.options
14 lines (11 loc) · 1.02 KB
/
meson.options
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# compiling
option('suppress_warnings', type: 'boolean', value: true, description: 'if true, suppress compiler warnings; this option exists until warnings are fixed')
# examples
option('build_examples', type: 'boolean', value: true, description: 'build examples; see also "install_examples"')
option('install_examples', type: 'boolean', value: false, description: 'install examples; requires "build_examples" to be true')
# ROOT extensions and tools
option('dataframes', type: 'boolean', value: true, description: 'install HIPO dataframes extension')
option('install_root_tools', type: 'boolean', value: false, description: 'install ROOT tools such as "hipo_hist2root"')
# testing
option('test_file', type: 'string', value: '', description: 'sample HIPO file to use for certain tests; if unspecified, those tests will not run; must be an absolute path')
option('test_fortran', type: 'boolean', value: false, description: 'test Fortran example; you must have a Fortran compiler and build option "test_file" must be set')