Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Traccc/examples/run/common/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # TRACCC library, part of the ACTS project (R&D line)
0002 #
0003 # (c) 2021-2025 CERN for the benefit of the ACTS project
0004 #
0005 # Mozilla Public License Version 2.0
0006 
0007 # Project include(s).
0008 include(traccc-compiler-options-cpp)
0009 
0010 # Create the common library.
0011 traccc_add_library(traccc_examples_common examples_common TYPE SHARED
0012    "include/traccc/examples/make_magnetic_field.hpp"
0013    "src/make_magnetic_field.cpp"
0014    "include/traccc/examples/print_fitted_tracks_statistics.hpp"
0015    "src/print_fitted_tracks_statistics.cpp"
0016    "include/traccc/examples/throughput_mt.hpp"
0017    "include/traccc/examples/throughput_st.hpp"
0018    "include/traccc/examples/impl/throughput_mt.ipp"
0019    "include/traccc/examples/impl/throughput_st.ipp"
0020 )
0021 target_link_libraries(
0022     traccc_examples_common
0023     PUBLIC traccc::core traccc::options
0024     PRIVATE traccc::io
0025 )