Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Traccc/tests/core/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 # Declare the core library test(s).
0008 traccc_add_test(core
0009    "test_algorithm.cpp"
0010    "test_module_map.cpp"
0011    "test_pvalue.cpp"
0012    "test_subspace.cpp"
0013    "particle.cpp"
0014    LINK_LIBRARIES GTest::gtest_main traccc_tests_common
0015    traccc::core traccc::io
0016 )
0017 
0018 if(TRACCC_USE_ROOT)
0019     find_package(ROOT COMPONENTS Core RIO Hist REQUIRED)
0020     target_link_libraries(traccc_test_core PRIVATE ROOT::Core)
0021     target_compile_definitions(traccc_test_core PRIVATE TRACCC_HAVE_ROOT)
0022 endif()