Skip to content
Snippets Groups Projects
CMakeLists.txt 1.55 KiB
Newer Older
###############################################################################
# (c) Copyright 2000-2019 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 2.8.5)

#---------------------------------------------------------------
# Load macros and functions for Gaudi-based projects
find_package(GaudiProject)
#---------------------------------------------------------------

# Declare project name and version
gaudi_project(DaVinci v52r0
              USE Analysis v32r0
Marco Clemencic's avatar
Marco Clemencic committed
              DATA AppConfig VERSION v3r*
                   FieldMap VERSION v5r*
                   ParamFiles VERSION v8r*
Marco Clemencic's avatar
Marco Clemencic committed
                   QMTestFiles VERSION v1r*
Marco Clemencic's avatar
Marco Clemencic committed
                   PRConfig VERSION v1r*
                   TurboStreamProd VERSION v*
Marco Clemencic's avatar
Marco Clemencic committed
                   TCK/HltTCK)

# hide warnings from some external projects
find_package(Boost)
find_package(ROOT)
include_directories(SYSTEM ${Boost_INCLUDE_DIRS} ${ROOT_INCLUDE_DIRS})