Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/thirdparty/ModuleMapGraph/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_minimum_required(VERSION 3.25)
0010 
0011 # CMake include(s).
0012 include(FetchContent)
0013 
0014 # Tell the user what's happening.
0015 message(STATUS "Building ModuleMapGraph as part of the Acts project")
0016 
0017 # Declare where to get traccc from.
0018 FetchContent_Declare(
0019     ModuleMapGraph
0020     GIT_REPOSITORY https://gitlab.cern.ch/gnn4itkteam/ModuleMapGraph
0021     GIT_TAG v1.0.10
0022     OVERRIDE_FIND_PACKAGE
0023 )
0024 
0025 set(USE_MPI OFF)
0026 set(USE_CUDA ON)
0027 set(WITH_NUMPY_EXPORT OFF)
0028 set(WITH_PYTORCH_EXPORT OFF)
0029 set(CMAKE_CUDA_STANDARD 20)
0030 
0031 # Now set up its build.
0032 FetchContent_MakeAvailable(ModuleMapGraph)