Back to home page

EIC code displayed by LXR

 
 

    


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

0001 add_library(
0002     ActsExamplesTrackFinding
0003     SHARED
0004     src/SeedingAlgorithm.cpp
0005     src/SeedingOrthogonalAlgorithm.cpp
0006     src/SpacePointMaker.cpp
0007     src/TrackFindingAlgorithm.cpp
0008     src/TrackFindingAlgorithmFunction.cpp
0009     src/HoughTransformSeeder.cpp
0010     src/TrackParamsEstimationAlgorithm.cpp
0011     src/MuonHoughSeeder.cpp
0012     src/GbtsSeedingAlgorithm.cpp
0013     src/TrackParamsLookupEstimation.cpp
0014     src/GridTripletSeedingAlgorithm.cpp
0015 )
0016 
0017 target_include_directories(
0018     ActsExamplesTrackFinding
0019     PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0020 )
0021 
0022 target_link_libraries(
0023     ActsExamplesTrackFinding
0024     PUBLIC ActsCore ActsExamplesFramework ActsExamplesMagneticField
0025     PRIVATE ROOT::Core ROOT::Geom ROOT::Graf ROOT::Hist ROOT::Gpad
0026 )
0027 
0028 acts_compile_headers(ActsExamplesTrackFinding GLOB "include/**/*.hpp")
0029 
0030 # If Hashing examples are enabled, add them to the build
0031 if(ACTS_BUILD_EXAMPLES_HASHING)
0032     target_sources(
0033         ActsExamplesTrackFinding
0034         PRIVATE src/SeedingAlgorithmHashing.cpp
0035     )
0036 
0037     target_link_libraries(ActsExamplesTrackFinding PUBLIC ActsPluginHashing)
0038 endif()
0039 
0040 install(
0041     TARGETS ActsExamplesTrackFinding
0042     LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
0043 )