Warning, /acts/Examples/Algorithms/TrackFindingML/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 set(SOURCES
0002 src/AmbiguityResolutionML.cpp
0003 src/AmbiguityResolutionMLAlgorithm.cpp
0004 src/AmbiguityResolutionMLDBScanAlgorithm.cpp
0005 src/SeedFilterMLAlgorithm.cpp
0006 )
0007
0008 add_library(
0009 ActsExamplesTrackFindingML SHARED
0010 ${SOURCES}
0011 )
0012
0013 target_include_directories(
0014 ActsExamplesTrackFindingML
0015 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0016 )
0017
0018 target_link_libraries(
0019 ActsExamplesTrackFindingML
0020 PUBLIC
0021 ActsCore
0022 ActsPluginOnnx
0023 ActsExamplesFramework
0024 )
0025
0026 install(
0027 TARGETS ActsExamplesTrackFindingML
0028 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
0029 )