Skip to content
Snippets Groups Projects
CMakeLists.txt 1.24 KiB
Newer Older
###############################################################################
# (c) Copyright 2000-2021 CERN for the benefit of the LHCb Collaboration      #
#                                                                             #
# This software is distributed under the terms of the GNU General Public      #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".   #
#                                                                             #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization  #
# or submit itself to any jurisdiction.                                       #
###############################################################################
Marco Clemencic's avatar
Marco Clemencic committed

cmake_minimum_required(VERSION 3.15)
Marco Clemencic's avatar
Marco Clemencic committed

project(DaVinci VERSION 62.0
# Enable testing with CTest/CDash
include(CTest)

list(PREPEND CMAKE_MODULE_PATH
    ${PROJECT_SOURCE_DIR}/cmake
)

# Dependencies
set(WITH_DaVinci_PRIVATE_DEPENDENCIES TRUE)
include(DaVinciDependencies)

# -- Subdirectories
lhcb_add_subdirectories(
    DaVinciExamples
    DaVinciTutorials
    DaVinciSys
    DaVinciTests
    Phys/DaVinci
)

lhcb_finalize_configuration(NO_EXPORT)