-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: option to disable building examples
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# 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_examples', type: 'boolean', value: false, description: 'install examples') | ||
option('install_root_tools', type: 'boolean', value: true, description: 'install ROOT tools such as "hipo_hist2root"') | ||
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') | ||
|
||
# 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') |