Fork me on GitHub

source: git/external/ExRootAnalysis/CMakeLists.txt@ 9259bfe

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 9259bfe was 9259bfe, checked in by Pavel Demin <pavel-demin@…>, 8 years ago

install headers required by libDelphes and libDelphesDisplay

  • Property mode set to 100644
File size: 643 bytes
Line 
1include_directories(
2 ${CMAKE_SOURCE_DIR}/external
3 ${ROOT_INCLUDE_DIRS}
4)
5
6file(GLOB sources *.cc)
7file(GLOB headers *.h)
8list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/ExRootAnalysisLinkDef.h)
9
10DELPHES_GENERATE_DICTIONARY(ExRootAnalysisDict ${headers} LINKDEF ExRootAnalysisLinkDef.h)
11
12add_library(ExRootAnalysis OBJECT ${sources} ExRootAnalysisDict.cxx)
13
14# install headers
15install(FILES ${headers} DESTINATION include/ExRootAnalysis)
16
17# install pcms if they are created
18if (${ROOT_VERSION} GREATER 6)
19 install(FILES
20 ${PROJECT_BINARY_DIR}/external/ExRootAnalysis/libExRootAnalysisDict_rdict.pcm
21 DESTINATION lib)
22endif()
Note: See TracBrowser for help on using the repository browser.