Back to home page

EIC code displayed by LXR

 
 

    


Warning, /EICrecon/src/services/pid_lut/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 Setting default includes, libraries and
0007 # installation paths
0008 plugin_add(${PLUGIN_NAME} WITH_SHARED_LIBRARY)
0009 
0010 # The macro grabs sources as *.cc *.cpp *.c and headers as *.h *.hh *.hpp Then
0011 # correctly sets sources for ${_name}_plugin and ${_name}_library targets Adds
0012 # headers to the correct installation directory
0013 plugin_glob_all(${PLUGIN_NAME})
0014 
0015 # Find dependencies
0016 find_package(Boost REQUIRED COMPONENTS iostreams)
0017 plugin_link_libraries(${PLUGIN_NAME} Boost::iostreams)