Back to home page

EIC code displayed by LXR

 
 

    


Warning, /EICrecon/src/benchmarks/reconstruction/tof_efficiency/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # Automatically set plugin name the same as the directory name Don't forget
0002 # string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in
0003 # its name
0004 get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
0005 
0006 # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets
0007 # Setting default includes, libraries and installation paths
0008 plugin_add(${PLUGIN_NAME})
0009 
0010 # Find dependencies
0011 plugin_add_dd4hep(${PLUGIN_NAME})
0012 find_package(ROOT REQUIRED COMPONENTS Core Tree Hist RIO EG)
0013 plugin_add_acts(${PLUGIN_NAME})
0014 plugin_add_event_model(${PLUGIN_NAME})
0015 
0016 # The macro grabs sources as *.cc *.cpp *.c and headers as *.h *.hh *.hpp Then
0017 # correctly sets sources for ${_name}_plugin and ${_name}_library targets Adds
0018 # headers to the correct installation directory
0019 plugin_glob_all(${PLUGIN_NAME})
0020 
0021 # Add libraries (same as target_include_directories but for both plugin and
0022 # library)
0023 plugin_link_libraries(
0024   ${PLUGIN_NAME}
0025   ROOT::Core
0026   ROOT::Tree
0027   ROOT::Hist
0028   ROOT::RIO
0029   ROOT::EG
0030   ActsCore
0031   EDM4EIC::edm4eic)