Warning, /acts/Detray/plugins/svgtools/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 # Let the user know what's happening.
0010 message(STATUS "Building 'detray::svgtools' component")
0011
0012 # Set up the library.
0013 file(
0014 GLOB _detray_svgtools_public_headers
0015 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
0016 "include/detray/plugins/svgtools/*.hpp"
0017 )
0018
0019 detray_add_library( detray_svgtools svgtools
0020 ${_detray_svg_public_headers}
0021 )
0022 target_link_libraries(
0023 detray_svgtools
0024 INTERFACE detray::core detray::io actsvg::core actsvg::meta
0025 )
0026
0027 # Clean up.
0028 unset(_detray_svgtools_public_headers)