]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CMakelibAliHLTComp.pkg
Added SPD outlier trigger bit
[u/mrichter/AliRoot.git] / HLT / CMakelibAliHLTComp.pkg
1 # -*- mode: CMake -*- 
2 # $Id$
3 #--------------------------------------------------------------------------------#
4 # Package File for AliHLTComp                                                    #
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
30 set ( CLASS_HDRS
31     AliHLTCompAgent.h
32     )
33
34 string ( REPLACE ".h" ".cxx" MODULE_SRCS "${CLASS_HDRS}" )
35
36 set ( MODULE_HDRS       ${CLASS_HDRS})
37
38 set ( MODULE_DHDR )
39
40 set ( EINCLUDE  HLT/BASE HLT/shuttle HLT/TPCLib HLT/comp STEER/CDB STEER/STEERBase)
41
42 set ( ELIBS  "HLTbase CDB")
43
44 include ("CMakehlt.conf")
45
46 if (MODULE_SRCS)
47 ALICE_Format (SRCS "comp/" "" "${MODULE_SRCS}")
48 endif(MODULE_SRCS)
49 if (CLASS_HDRS)
50 ALICE_Format (CINTHDRS "comp/" "" "${CLASS_HDRS}")
51 endif(CLASS_HDRS)
52 if (MODULE_HDRS)
53 ALICE_Format (HDRS "comp/" "" "${MODULE_HDRS}")
54 endif(MODULE_HDRS)
55 if (MODULE_DHDR)
56 ALICE_Format (DHDR "comp/" "" "${MODULE_DHDR}")
57 endif(MODULE_DHDR)
58
59 if(NOT DHDR)
60   set(CINTAUTOLINK 1)
61 endif(NOT DHDR)
62
63 set ( EDEFINE  ${HLTDEFS})
64 set ( PACKCXXFLAGS  ${HLTCXXFLAGS})
65 set ( PACKCFLAGS  ${HLTCLFAGS})
66 set ( PACKDCXXFLAGS  ${HLTDCXXFLAGS})
67 set ( PACKSOFLAGS ${HLTSOFLAGS})