Warning, /acts/Examples/Algorithms/TrackFinding/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 acts_add_library(
0002 ExamplesTrackFinding
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/AdaptiveHoughTransformSeeder.cpp
0011 src/TrackParamsEstimationAlgorithm.cpp
0012 src/MuonHoughSeeder.cpp
0013 src/GbtsSeedingAlgorithm.cpp
0014 src/TrackParamsLookupEstimation.cpp
0015 src/GridTripletSeedingAlgorithm.cpp
0016 )
0017
0018 target_include_directories(
0019 ActsExamplesTrackFinding
0020 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0021 )
0022
0023 target_link_libraries(
0024 ActsExamplesTrackFinding
0025 PUBLIC Acts::ExamplesMagneticField
0026 PRIVATE ROOT::Core ROOT::Geom ROOT::Graf ROOT::Hist ROOT::Gpad
0027 )
0028
0029 acts_compile_headers(ExamplesTrackFinding GLOB "include/**/*.hpp")
0030
0031 # If Hashing examples are enabled, add them to the build
0032 if(ACTS_BUILD_EXAMPLES_HASHING)
0033 target_sources(
0034 ActsExamplesTrackFinding
0035 PRIVATE src/SeedingAlgorithmHashing.cpp
0036 )
0037
0038 target_link_libraries(ActsExamplesTrackFinding PUBLIC Acts::PluginHashing)
0039 endif()