Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/thirdparty/vecmem/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 # CMake include(s).
0010 include(FetchContent)
0011 
0012 # Tell the user what's happening.
0013 message(STATUS "Building VecMem as part of the Acts project")
0014 
0015 set(VECMEM_VERSION "v${_acts_vecmem_version}")
0016 
0017 # Declare where to get VecMem from.
0018 FetchContent_Declare(VecMem ${ACTS_VECMEM_SOURCE})
0019 
0020 # Options used in the build of VecMem.
0021 set(VECMEM_BUILD_TESTING
0022     FALSE
0023     CACHE BOOL
0024     "Turn off the build of the VecMem unit tests"
0025 )
0026 set(VECMEM_BUILD_BENCHMARKING
0027     FALSE
0028     CACHE BOOL
0029     "Turn off the build of VecMem benchmarking"
0030 )
0031 
0032 # Now set up its build.
0033 FetchContent_MakeAvailable(VecMem)