Skip to content

Commit

Permalink
Disable deprecated ROOT build option
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Mar 8, 2024
1 parent eae9ca8 commit 1942e69
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ilcsoft/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ def compile(self):

self.envcmake['CMAKE_INSTALL_PREFIX']=self.installPath

self.envcmake['GSL_ROOT_DIR']=gsl.installPath
self.envcmake['GSL_CONFIG_EXECUTABLE']=gsl_bindir+'/gsl-config'
if Version(self.version) <= "6.30.04":
self.envcmake['GSL_ROOT_DIR']=gsl.installPath
self.envcmake['GSL_CONFIG_EXECUTABLE']=gsl_bindir+'/gsl-config'
self.envcmake.setdefault( 'gsl_shared', 'ON' )

self.envcmake.setdefault( 'gsl_shared', 'ON' )
self.envcmake.setdefault( 'gdml', 'ON' )
self.envcmake.setdefault( 'minuit2', 'ON' )
self.envcmake.setdefault( 'roofit', 'ON' )
Expand Down

0 comments on commit 1942e69

Please sign in to comment.