Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /acts/Plugins/Onnx/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_library(
0002   ActsPluginOnnx SHARED
0003   # header files
0004   include/Acts/Plugins/Onnx/OnnxRuntimeBase.hpp
0005   include/Acts/Plugins/Onnx/MLTrackClassifier.hpp
0006   include/Acts/Plugins/Onnx/AmbiguityTrackClassifier.hpp
0007   include/Acts/Plugins/Onnx/SeedClassifier.hpp
0008   # source files
0009   src/OnnxRuntimeBase.cpp
0010   src/MLTrackClassifier.cpp)
0011 
0012 target_include_directories(
0013   ActsPluginOnnx
0014   PUBLIC
0015     $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0016     $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
0017 
0018 target_link_libraries(
0019   ActsPluginOnnx
0020   PUBLIC ActsCore OnnxRuntime)
0021 
0022 install(
0023   TARGETS ActsPluginOnnx
0024   EXPORT ActsPluginOnnxTargets
0025   LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
0026 
0027 install(
0028   DIRECTORY include/Acts
0029   DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})