Warning, /acts/Traccc/tests/hip/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) 2024-2026 CERN for the benefit of the ACTS project
0004 #
0005 # Mozilla Public License Version 2.0
0006
0007 # Enable the HIP language.
0008 enable_language(HIP)
0009
0010 find_package(HIPToolkit REQUIRED)
0011
0012 traccc_add_test(
0013 hip
0014 # Define the sources for the test.
0015 test_thrust.hip
0016 test_cca.cpp
0017 LINK_LIBRARIES
0018 HIP::hiprt
0019 roc::rocthrust
0020 GTest::gtest_main
0021 vecmem::core
0022 vecmem::hip
0023 traccc::core
0024 traccc::device_common
0025 traccc::hip
0026 traccc_tests_common
0027 )
0028
0029 set_target_properties(traccc_test_hip PROPERTIES POSITION_INDEPENDENT_CODE TRUE)