forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDACMakeLists.example
32 lines (28 loc) · 1.88 KB
/
DACMakeLists.example
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
# **************************************************************************
# * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
# * *
# * Author: The ALICE Off-line Project. *
# * Contributors are mentioned in the code where appropriate. *
# * *
# * Permission to use, copy, modify and distribute this software and its *
# * documentation strictly for non-commercial purposes is hereby granted *
# * without fee, provided that the above copyright notice appears in all *
# * copies and that both the copyright notice and this permission notice *
# * appear in the supporting documentation. The authors make no claims *
# * about the suitability of this software for any purpose. It is *
# * provided "as is" without express or implied warranty. *
# **************************************************************************
# Module include folder - DO NOT FORGET TO EDIT
include_directories(${AliRoot_SOURCE_DIR}/MUON/DA)
# Additional include folders in alphabetical order - DO NOT FORGET TO EDIT
include_directories(
# ${AliRoot_SOURCE_DIR}/STEER/STEERBase
)
# Set the static dependencies for this DA
# Make sure that static build is enabled for all the dependencies
# If you are not sure what dependecies to put contact [email protected]
set(STATIC_DEPENDENCIES MUONcalib-static MUONcore-static MUONmapping-static MUONraw-static RAWDatarec-static) # DO NOT FORGET TO EDIT
# Generate the DA using DetectorName, Algortihm
# The DA file has to be named DetectorNameAlgortihmda.cxx
# generateDA("DetectorName" "Algorithm" "${STATIC_DEPENDENCIES}")
generateDA("MUON" "TRG" "${STATIC_DEPENDENCIES}") # DO NOT FORGET TO EDIT