forked from tcoates3/dqm4hep-dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
33 lines (27 loc) · 820 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#################################################
# cmake file for building DQMDream package
# @author Ete Remi, DESY
# Copyright (c)
cmake_minimum_required( VERSION 2.6 FATAL_ERROR )
#################################################
###############################
# project name
project( DQMDream )
set( ${PROJECT_NAME}_VERSION_MAJOR 1 )
set( ${PROJECT_NAME}_VERSION_MINOR 0 )
set( ${PROJECT_NAME}_VERSION_PATCH 0 )
###############################
# Central settings
include( dqm4hep_settings )
# ----- Find DQM4hep package -----
dqm4hep_find_package(
PACKAGE DQM4hep
COMPONENTS DQMCore DQMNet DQMOnline
REQUIRED
)
###############################
# Add source directory
add_subdirectory( source )
###############################
# display some variables and write them to cache
display_std_variables()