Changeset 90187bd in git for CMakeLists.txt
- Timestamp:
- May 18, 2018, 8:33:39 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- b315535
- Parents:
- 73bc3ca (diff), 4ed4118 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Pavel Demin <pavel-demin@…> (05/18/18 20:33:39)
- git-committer:
- GitHub <noreply@…> (05/18/18 20:33:39)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r73bc3ca r90187bd 26 26 ENDIF(SET_RPATH) 27 27 28 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") 29 28 30 # Declare ROOT dependency 29 31 find_package(ROOT COMPONENTS EG Eve Geom Gui GuiHtml GenVector Hist Physics Matrix Graf RIO Tree Gpad RGL MathCore) 30 32 include(${ROOT_USE_FILE}) 33 34 35 # Declare Pythia8 dependancy 36 find_package(Pythia8) 37 if(PYTHIA8_FOUND) 38 message(STATUS "Pythia8 found") 39 include_directories(${PYTHIA8_INCLUDE_DIRS}) 40 set(LIBS ${LIBS} ${PYTHIA8_LIBRARIES}) 41 endif(PYTHIA8_FOUND) 42 31 43 32 44 if(NOT DEFINED CMAKE_INSTALL_LIBDIR) … … 41 53 endif() 42 54 endfunction() 55 56 43 57 44 58 # Declare position of all other externals needed … … 77 91 target_link_Libraries(Delphes ${ROOT_LIBRARIES} ${ROOT_COMPONENT_LIBRARIES}) 78 92 target_link_Libraries(DelphesDisplay ${ROOT_LIBRARIES} ${ROOT_COMPONENT_LIBRARIES}) 93 if(PYTHIA8_FOUND) 94 target_link_libraries(Delphes ${LIBS}) # needed for DelphesPythia8 95 endif(PYTHIA8_FOUND) 96 79 97 80 98 install(TARGETS Delphes DelphesDisplay DESTINATION lib)
Note:
See TracChangeset
for help on using the changeset viewer.