Fork me on GitHub

source: git/display/CMakeLists.txt@ e57c062

ImprovedOutputFile Timing dual_readout llp
Last change on this file since e57c062 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: 619 bytes
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)
9list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/DisplayLinkDef.h)
10
[be6c1c8]11DELPHES_GENERATE_DICTIONARY(DisplayDict ${headers} LINKDEF DisplayLinkDef.h)
[7fe06d6]12
13add_library(display OBJECT ${sources} DisplayDict.cxx)
[0f5bf9d]14
[9259bfe]15# install headers
16install(FILES ${headers} DESTINATION include/display)
[102596a]17
[0f5bf9d]18# install pcms if they are created
[f08ddc6]19if (NOT ${ROOT_VERSION} VERSION_LESS "6.0.0")
[0f5bf9d]20 install(FILES
[781e3118]21 ${PROJECT_BINARY_DIR}/display/libDisplayDict_rdict.pcm
[0f5bf9d]22 DESTINATION lib)
23endif()
Note: See TracBrowser for help on using the repository browser.