Warning, /acts/Traccc/examples/run/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 # # Add all the subdirectories that can be built.
0011 add_subdirectory(common)
0012 add_subdirectory(cpu)
0013
0014 if(TRACCC_BUILD_CUDA)
0015 add_subdirectory(cuda)
0016 endif()
0017
0018 if(TRACCC_BUILD_SYCL)
0019 add_subdirectory(sycl)
0020 endif()
0021
0022 if(TRACCC_BUILD_ALPAKA)
0023 add_subdirectory(alpaka)
0024 endif()