ImprovedOutputFile
Timing
dual_readout
Last change
on this file since ef8a06d was 3d19203, checked in by Pavel Demin <pavel-demin@…>, 6 years ago |
add PYTHIA8_FOUND to modules/CMakeLists.txt
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[7fe06d6] | 1 | include_directories(
|
---|
| 2 | ${CMAKE_SOURCE_DIR}
|
---|
| 3 | ${ROOT_INCLUDE_DIRS}
|
---|
| 4 | ${DelphesExternals_INCLUDE_DIR}
|
---|
| 5 | )
|
---|
| 6 |
|
---|
| 7 | file(GLOB sources *.cc)
|
---|
| 8 | file(GLOB headers *.h)
|
---|
[ce4b888] | 9 | list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/FastJetLinkDef.h)
|
---|
[7fe06d6] | 10 | list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/ModulesLinkDef.h)
|
---|
| 11 | list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/Pythia8LinkDef.h)
|
---|
| 12 |
|
---|
[ce4b888] | 13 | DELPHES_GENERATE_DICTIONARY(FastJetDict ${headers} LINKDEF FastJetLinkDef.h)
|
---|
[be6c1c8] | 14 | DELPHES_GENERATE_DICTIONARY(ModulesDict ${headers} LINKDEF ModulesLinkDef.h)
|
---|
[7fe06d6] | 15 |
|
---|
[3d19203] | 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()
|
---|
[255a666] | 23 |
|
---|
[9259bfe] | 24 | # install headers
|
---|
| 25 | install(FILES ${headers} DESTINATION include/modules)
|
---|
[0f5bf9d] | 26 |
|
---|
| 27 | # install pcms if they are created
|
---|
[f08ddc6] | 28 | if (NOT ${ROOT_VERSION} VERSION_LESS "6.0.0")
|
---|
[0f5bf9d] | 29 | install(FILES
|
---|
| 30 | ${PROJECT_BINARY_DIR}/modules/libModulesDict_rdict.pcm
|
---|
| 31 | ${PROJECT_BINARY_DIR}/modules/libFastJetDict_rdict.pcm
|
---|
| 32 | DESTINATION lib)
|
---|
| 33 | endif()
|
---|
Note:
See
TracBrowser
for help on using the repository browser.