Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Detray/tests/include/detray/test/cpu/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # This file is part of the ACTS project.
0002 #
0003 # Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 #
0005 # This Source Code Form is subject to the terms of the Mozilla Public
0006 # License, v. 2.0. If a copy of the MPL was not distributed with this
0007 # file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008 
0009 message(STATUS "Building 'detray::test_cpu' component")
0010 
0011 # Set the CPU build flags.
0012 include(detray-compiler-options-cpp)
0013 
0014 # Set up a test library, which the "new style" benchmarks and tests could use.
0015 add_library(
0016     detray_test_cpu
0017     INTERFACE
0018     "algebra_fixture.hpp"
0019     "detector_consistency.hpp"
0020     "detector_scan.hpp"
0021     "material_scan.hpp"
0022     "navigation_validation.hpp"
0023     "navigation_validation.hpp"
0024     "toy_detector_test.hpp"
0025 )
0026 
0027 add_library(detray::test_cpu ALIAS detray_test_cpu)
0028 
0029 target_link_libraries(
0030     detray_test_cpu
0031     INTERFACE
0032         vecmem::core
0033         detray::core_array
0034         detray::test_common
0035         detray::validation_utils
0036 )