Warning, /acts/Detray/plugins/algebra/array/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 the std::array algebra plugin")
0010
0011 # Set up the library.
0012 detray_add_library( detray_algebra_array algebra_array
0013 "include/algebra/array.hpp"
0014 "include/algebra/impl/*.hpp"
0015 "include/algebra/utils/*.hpp"
0016 )
0017
0018 target_link_libraries(detray_algebra_array INTERFACE detray::core)
0019
0020 target_compile_definitions(
0021 detray_algebra_array
0022 INTERFACE
0023 DETRAY_CUSTOM_SCALARTYPE=${DETRAY_CUSTOM_SCALARTYPE}
0024 DETRAY_ALGEBRA_ARRAY
0025 )
0026
0027 detray_test_public_headers( detray_algebra_array
0028 "algebra/array.hpp"
0029 )