- Timestamp:
- May 25, 2018, 3:10:33 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 9ef4235
- Parents:
- 3874a9c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/CMakeLists.txt
r3874a9c r3d19203 14 14 DELPHES_GENERATE_DICTIONARY(ModulesDict ${headers} LINKDEF ModulesLinkDef.h) 15 15 16 # TODO: implement switch to enable Pythia8 if present 17 list(REMOVE_ITEM sources ${CMAKE_CURRENT_SOURCE_DIR}/PileUpMergerPythia8.cc) 18 19 add_library(modules OBJECT ${sources} FastJetDict.cxx ModulesDict.cxx) 16 if(PYTHIA8_FOUND) 17 DELPHES_GENERATE_DICTIONARY(Pythia8Dict ${headers} LINKDEF Pythia8LinkDef.h) 18 add_library(modules OBJECT ${sources} FastJetDict.cxx ModulesDict.cxx Pythia8Dict.cxx) 19 else() 20 list(REMOVE_ITEM sources ${CMAKE_CURRENT_SOURCE_DIR}/PileUpMergerPythia8.cc) 21 add_library(modules OBJECT ${sources} FastJetDict.cxx ModulesDict.cxx) 22 endif() 20 23 21 24 # install headers
Note:
See TracChangeset
for help on using the changeset viewer.