Changeset 102596a in git
- Timestamp:
- Feb 13, 2017, 4:11:04 PM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 9259bfe
- Parents:
- 39e729d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r39e729d r102596a 36 36 add_library(Delphes SHARED 37 37 $<TARGET_OBJECTS:classes> 38 $<TARGET_OBJECTS:display>39 38 $<TARGET_OBJECTS:modules> 40 39 $<TARGET_OBJECTS:ExRootAnalysis> … … 45 44 ) 46 45 46 add_library(DelphesDisplay SHARED 47 $<TARGET_OBJECTS:classes> 48 $<TARGET_OBJECTS:display> 49 $<TARGET_OBJECTS:modules> 50 $<TARGET_OBJECTS:ExRootAnalysis> 51 $<TARGET_OBJECTS:fastjet> 52 $<TARGET_OBJECTS:tcl> 53 $<TARGET_OBJECTS:Hector> 54 $<TARGET_OBJECTS:PUPPI> 55 ) 56 47 57 target_link_Libraries(Delphes ${ROOT_LIBRARIES} ${ROOT_COMPONENT_LIBRARIES}) 58 target_link_Libraries(DelphesDisplay ${ROOT_LIBRARIES} ${ROOT_COMPONENT_LIBRARIES}) 48 59 49 install(TARGETS Delphes D ESTINATION lib)60 install(TARGETS Delphes DelphesDisplay DESTINATION lib) -
display/CMakeLists.txt
r39e729d r102596a 13 13 add_library(display OBJECT ${sources} DisplayDict.cxx) 14 14 15 # install public headers 16 install(FILES 17 Delphes3DGeometry.h 18 DelphesEventDisplay.h 19 DESTINATION include/display) 20 15 21 # install pcms if they are created 16 22 if (${ROOT_VERSION} GREATER 6)
Note:
See TracChangeset
for help on using the changeset viewer.