-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update examples/macbookfg to work w/ recent HEAD
- Loading branch information
Showing
4 changed files
with
37 additions
and
16 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 |
---|---|---|
|
@@ -26,7 +26,7 @@ path_where_this_file_lives = os.path.dirname( config_file ) | |
versions_file = os.path.join( path_where_this_file_lives, "release-versions.py" ) | ||
exec(compile(open(versions_file, "rb").read(), versions_file, "exec")) | ||
|
||
print "Do we install nightlies? ", nightlies | ||
#print "Do we install nightlies? ", nightlies | ||
|
||
# installation directory | ||
if not 'ilcsoft_install_dir' in dir(): | ||
|
@@ -108,7 +108,7 @@ ilcsoft.module("DDMarlinPandora").envcmake["CMAKE_CXX_FLAGS"]='-Wno-error' | |
|
||
|
||
ilcsoft.install( MarlinUtil( MarlinUtil_version )) | ||
|
||
ilcsoft.module("MarlinUtil").envcmake["USE_EXTERNAL_CATCH2"] = 'OFF' | ||
|
||
#---------- standard reco packages | ||
|
||
|
@@ -152,7 +152,7 @@ ilcsoft.install( MarlinPKG( "MarlinTrkProcessors", MarlinTrkProcessors_version ) | |
ilcsoft.module("MarlinTrkProcessors").addDependency( [ 'LCIO', 'ROOT', 'GSL', 'Marlin', 'MarlinUtil', 'KalTest', 'KalDet', 'MarlinTrk', 'KiTrack', 'KiTrackMarlin'] ) | ||
|
||
ilcsoft.install( MarlinPKG( "MarlinKinfitProcessors", MarlinKinfitProcessors_version )) | ||
ilcsoft.module("MarlinKinfitProcessors").addDependency( [ 'LCIO', 'GEAR', 'GSL', 'Marlin'] ) | ||
ilcsoft.module("MarlinKinfitProcessors").addDependency( [ 'LCIO', 'GEAR', 'GSL', 'Marlin','Boost'] ) | ||
|
||
ilcsoft.install( MarlinPKG( "ILDPerformance", ILDPerformance_version )) | ||
ilcsoft.module("ILDPerformance").addDependency( [ 'Marlin', 'MarlinUtil', 'ROOT'] ) | ||
|
@@ -242,7 +242,10 @@ ilcsoft.module("DD4hep").envcmake["DD4HEP_USE_LCIO"]=1 | |
ilcsoft.module("DD4hep").envcmake["DD4HEP_USE_XERCESC"]=0 | ||
ilcsoft.module("DD4hep").envcmake["DD4HEP_USE_PYROOT"]=0 | ||
ilcsoft.module("DD4hep").envcmake["DD4HEP_USE_GEAR"]=1 | ||
ilcsoft.module("DD4hep").envcmake["DD4HEP_RELAX_PYVER"]='ON' | ||
ilcsoft.module("DD4hep").envcmake["BUILD_DOCS"]=0 | ||
ilcsoft.module("DD4hep").envcmake["DD4HEP_USE_EDM4HEP"]='ON' | ||
|
||
## hack to use the correct python3 | ||
#ilcsoft.module("DD4hep").envcmake["PYTHON_INCLUDE_DIR"]="/usr/local/Cellar/[email protected]/3.9.0_1/Frameworks/Python.framework/Versions/3.9/include/python3.9" | ||
#ilcsoft.module("DD4hep").envcmake["PYTHON_LIBRARY"]="/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/lib/libpython3.9.dylib" | ||
|
@@ -252,9 +255,12 @@ ilcsoft.install( lcgeo( lcgeo_version )) | |
|
||
ilcsoft.install( podio( podio_version )) | ||
ilcsoft.module("podio").envcmake["ENABLE_SIO"] = 'ON' | ||
ilcsoft.module("podio").envcmake["USE_EXTERNAL_CATCH2"] = 'OFF' | ||
ilcsoft.module("podio").envcmake["PODIO_RELAX_PYVER"] = 'ON' | ||
|
||
ilcsoft.install( edm4hep( edm4hep_version )) | ||
ilcsoft.module("edm4hep").envcmake["BUILD_DDG4EDM4HEP"] = 'OFF' | ||
ilcsoft.module("edm4hep").envcmake["USE_EXTERNAL_CATCH2"] = 'OFF' | ||
|
||
ilcsoft.install( aidaTT( aidaTT_version )) | ||
##ilcsoft.module("aidaTT").download.type="GitHub" | ||
|
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