Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Detray/tests/tools/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::tools' component")
0010 
0011 include(CMakeFindDependencyMacro)
0012 
0013 find_dependency(Boost COMPONENTS program_options)
0014 
0015 add_library(detray_tools INTERFACE)
0016 add_library(detray::tools ALIAS detray_tools)
0017 
0018 target_include_directories(
0019     detray_tools
0020     INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include"
0021 )
0022 
0023 target_link_libraries(
0024     detray_tools
0025     INTERFACE Boost::program_options vecmem::core detray::io detray::test_common
0026 )
0027 
0028 add_subdirectory(src)