Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Examples/Algorithms/Propagation/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_library(ActsExamplesPropagation SHARED src/PropagationAlgorithm.cpp)
0002 
0003 target_include_directories(
0004     ActsExamplesPropagation
0005     PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0006 )
0007 
0008 target_link_libraries(
0009     ActsExamplesPropagation
0010     PUBLIC ActsCore ActsExamplesFramework
0011 )
0012 
0013 acts_compile_headers(ActsExamplesPropagation GLOB "include/**/*.hpp")
0014 
0015 install(
0016     TARGETS ActsExamplesPropagation
0017     LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
0018 )