Fork me on GitHub

source: git/modules/CMakeLists.txt@ 3874a9c

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 3874a9c was 0ac1afd, checked in by GitHub <noreply@…>, 7 years ago

Merge pull request #39 from jlingema/master

Correctly check ROOT version

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[7fe06d6]1include_directories(
2 ${CMAKE_SOURCE_DIR}
3 ${ROOT_INCLUDE_DIRS}
4 ${DelphesExternals_INCLUDE_DIR}
5)
6
7file(GLOB sources *.cc)
8file(GLOB headers *.h)
[ce4b888]9list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/FastJetLinkDef.h)
[7fe06d6]10list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/ModulesLinkDef.h)
11list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/Pythia8LinkDef.h)
12
[ce4b888]13DELPHES_GENERATE_DICTIONARY(FastJetDict ${headers} LINKDEF FastJetLinkDef.h)
[be6c1c8]14DELPHES_GENERATE_DICTIONARY(ModulesDict ${headers} LINKDEF ModulesLinkDef.h)
[7fe06d6]15
16# TODO: implement switch to enable Pythia8 if present
17list(REMOVE_ITEM sources ${CMAKE_CURRENT_SOURCE_DIR}/PileUpMergerPythia8.cc)
18
[ce4b888]19add_library(modules OBJECT ${sources} FastJetDict.cxx ModulesDict.cxx)
[255a666]20
[9259bfe]21# install headers
22install(FILES ${headers} DESTINATION include/modules)
[0f5bf9d]23
24# install pcms if they are created
[f08ddc6]25if (NOT ${ROOT_VERSION} VERSION_LESS "6.0.0")
[0f5bf9d]26 install(FILES
27 ${PROJECT_BINARY_DIR}/modules/libModulesDict_rdict.pcm
28 ${PROJECT_BINARY_DIR}/modules/libFastJetDict_rdict.pcm
29 DESTINATION lib)
30endif()
Note: See TracBrowser for help on using the repository browser.