]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CMakelibAliHLTGlobal.pkg
Bug fix: AliHLTComponent::ConfigureFromArgumentString
[u/mrichter/AliRoot.git] / HLT / CMakelibAliHLTGlobal.pkg
CommitLineData
7330f0e5 1# -*- mode: CMake -*-
947b5ea7 2# $Id$
6db31708 3#--------------------------------------------------------------------------------#
4# Package File for AliHLTGlobal #
5# Author : Johny Jose (johny.jose@cern.ch) #
6# Variables Defined : #
7# #
8# SRCS - C++ source files #
9# HDRS - C++ header files #
10# DHDR - ROOT Dictionary Linkdef header file #
11# CSRCS - C source files #
12# CHDRS - C header files #
13# EINCLUDE - Include directories #
14# EDEFINE - Compiler definitions #
15# ELIBS - Extra libraries to link #
16# ELIBSDIR - Extra library directories #
17# PACKFFLAGS - Fortran compiler flags for package #
18# PACKCXXFLAGS - C++ compiler flags for package #
19# PACKCFLAGS - C compiler flags for package #
20# PACKSOFLAGS - Shared library linking flags #
21# PACKLDFLAGS - Module linker flags #
22# PACKBLIBS - Libraries to link (Executables only) #
23# EXPORT - Header files to be exported #
24# CINTHDRS - Dictionary header files #
25# CINTAUTOLINK - Set automatic dictionary generation #
26# ARLIBS - Archive Libraries and objects for linking (Executables only) #
27# SHLIBS - Shared Libraries and objects for linking (Executables only) #
28#--------------------------------------------------------------------------------#
29
f078d002 30set ( CLASS_HDRS
31 AliHLTGlobalEsdConverterComponent.h
32 AliHLTGlobalTrackMergerComponent.h
33 AliHLTGlobalTrackMerger.h
34 AliHLTGlobalAgent.h
78166d69 35 AliHLTGlobalPreprocessor.h
f078d002 36 AliHLTGlobalDCSPublisherComponent.h
37 AliHLTGlobalVertexerComponent.h
38 AliHLTGlobalOfflineVertexerComponent.h
39 AliHLTGlobalTrackMatcher.h
40 AliHLTGlobalTrackMatcherComponent.h
41 AliHLTGlobalVertexerHistoComponent.h
42 AliHLTGlobalHistoComponent.h
43 AliHLTGlobalHistoCollector.h
44 AliHLTVertexFinderBase.h
45 AliHLTPrimaryVertexFinderComponent.h
46 AliHLTV0FinderComponent.h
47 physics/AliHLTV0HistoComponent.h
48 physics/AliHLTCaloHistoComponent.h
49 physics/AliHLTCaloHistoProducer.h
50 physics/AliHLTCaloHistoInvMass.h
51 physics/AliHLTCaloHistoMatchedTracks.h
52 physics/AliHLTCaloHistoClusterEnergy.h
53 physics/AliHLTCaloHistoCellEnergy.h
54 physics/AliHLTMultiplicityCorrelations.h
55 physics/AliHLTMultiplicityCorrelationsComponent.h
56 )
6db31708 57
58string ( REPLACE ".h" ".cxx" MODULE_SRCS "${CLASS_HDRS}" )
59
60set ( MODULE_HDRS ${CLASS_HDRS})
61
62set ( MODULE_DHDR )
63
527bcdd7 64set ( EINCLUDE HLT/global HLT/global/physics HLT/BASE HLT/BASE/util TPC RAW TRD PHOS STEER/ESD STEER/STEERBase ANALYSIS)
6db31708 65
947b5ea7 66set ( ELIBS "HLTbase AliHLTUtil CDB ESD STEER STEERBase TPCrec TPCcalib TPCbase RAWDatarec RAWDatabase TRDbase -lEG")
67
68set ( ELIBSDIR "${ROOTLIBDIR}" )
6db31708 69
70include ("CMakehlt.conf")
71
72if (MODULE_SRCS)
73ALICE_Format (SRCS "global/" "" "${MODULE_SRCS}")
74endif(MODULE_SRCS)
75if (CLASS_HDRS)
76ALICE_Format (CINTHDRS "global/" "" "${CLASS_HDRS}")
77endif(CLASS_HDRS)
78if (MODULE_HDRS)
79ALICE_Format (HDRS "global/" "" "${MODULE_HDRS}")
80endif(MODULE_HDRS)
81if (MODULE_DHDR)
82ALICE_Format (DHDR "global/" "" "${MODULE_DHDR}")
83endif(MODULE_DHDR)
84
85if(NOT DHDR)
86 set(CINTAUTOLINK 1)
87endif(NOT DHDR)
88
89set ( EDEFINE ${HLTDEFS})
90set ( PACKCXXFLAGS ${HLTCXXFLAGS})
91set ( PACKCFLAGS ${HLTCLFAGS})
92set ( PACKDCXXFLAGS ${HLTDCXXFLAGS})
93set ( PACKSOFLAGS ${HLTSOFLAGS})