forked from acts-project/detray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
26 lines (21 loc) · 718 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
26 lines (21 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Detray library, part of the ACTS project (R&D line)
#
# (c) 2024 CERN for the benefit of the ACTS project
#
# Mozilla Public License Version 2.0
message(STATUS "Building 'detray::detectors' component")
# Set the common C++ flags.
include(detray-compiler-options-cpp)
# Set up a detector library, which contains the different detector types that
# are currently available by default.
file(
GLOB _detray_detector_headers
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
"include/detray/detectors/*.hpp"
)
detray_add_library( detray_detectors detectors ${_detray_detectors_headers})
target_link_libraries(
detray_detectors
INTERFACE vecmem::core detray::core detray::io
)
unset(_detray_detector_headers)