[root] add dataframe cmake option (#17962)
* [root] add dataframe cmake option
@chissg @HadrienG2 @drbenmorgan
This has been a separate cmake option starting v6-19 I believe: 31292b9082
It should default to true -- not sure why, but this recipe sets it to off.
I could add a variant too, but since it has become an integral part of root and doesn't introduce extra dependencies, I'd propose to just set it to true like I do here.
* Update package.py
This commit is contained in:
parent
395b478b1b
commit
46fb456b54
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Root(CMakePackage):
|
||||||
homepage = "https://root.cern.ch"
|
homepage = "https://root.cern.ch"
|
||||||
url = "https://root.cern/download/root_v6.16.00.source.tar.gz"
|
url = "https://root.cern/download/root_v6.16.00.source.tar.gz"
|
||||||
|
|
||||||
maintainers = ['chissg', 'HadrienG2', 'drbenmorgan']
|
maintainers = ['chissg', 'HadrienG2', 'drbenmorgan', 'vvolkl']
|
||||||
|
|
||||||
# ###################### Versions ##########################
|
# ###################### Versions ##########################
|
||||||
|
|
||||||
|
@ -347,6 +347,7 @@ def cmake_args(self):
|
||||||
['chirp', False],
|
['chirp', False],
|
||||||
['cling', True],
|
['cling', True],
|
||||||
['cocoa', 'aqua'],
|
['cocoa', 'aqua'],
|
||||||
|
['dataframe', True],
|
||||||
['davix'],
|
['davix'],
|
||||||
['dcache', False],
|
['dcache', False],
|
||||||
['fftw3', 'fftw'],
|
['fftw3', 'fftw'],
|
||||||
|
|
Loading…
Reference in a new issue