]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CMakelibAliHLTSample.pkg
using binary cluster format for unpacking of compressed HLT TPC clusters instead...
[u/mrichter/AliRoot.git] / HLT / CMakelibAliHLTSample.pkg
CommitLineData
947b5ea7 1# $Id$
6db31708 2#--------------------------------------------------------------------------------#
3# Package File for AliHLTSample #
4# Author : Johny Jose (johny.jose@cern.ch) #
5# Variables Defined : #
6# #
7# SRCS - C++ source files #
8# HDRS - C++ header files #
9# DHDR - ROOT Dictionary Linkdef header file #
10# CSRCS - C source files #
11# CHDRS - C header files #
12# EINCLUDE - Include directories #
13# EDEFINE - Compiler definitions #
14# ELIBS - Extra libraries to link #
15# ELIBSDIR - Extra library directories #
16# PACKFFLAGS - Fortran compiler flags for package #
17# PACKCXXFLAGS - C++ compiler flags for package #
18# PACKCFLAGS - C compiler flags for package #
19# PACKSOFLAGS - Shared library linking flags #
20# PACKLDFLAGS - Module linker flags #
21# PACKBLIBS - Libraries to link (Executables only) #
22# EXPORT - Header files to be exported #
23# CINTHDRS - Dictionary header files #
24# CINTAUTOLINK - Set automatic dictionary generation #
25# ARLIBS - Archive Libraries and objects for linking (Executables only) #
26# SHLIBS - Shared Libraries and objects for linking (Executables only) #
27#--------------------------------------------------------------------------------#
28
947b5ea7 29set ( CLASS_HDRS
30 AliHLTSampleComponent1.h
31 AliHLTSampleComponent2.h
32 AliHLTSampleCalibrationComponent.h
33 AliHLTSampleESDAnalysisComponent.h
34 AliHLTSampleRawAnalysisComponent.h
35 AliHLTSampleMonitoringComponent.h
36 AliHLTAgentSample.h
37 AliHLTSamplePreprocessor.h
38 AliHLTSampleOfflineSinkComponent.h
39 AliHLTDummyComponent.h
40 )
6db31708 41
42string ( REPLACE ".h" ".cxx" MODULE_SRCS "${CLASS_HDRS}" )
43
44set ( MODULE_HDRS ${CLASS_HDRS})
45
46set ( MODULE_DHDR )
47
48set ( EINCLUDE HLT/BASE HLT/shuttle HLT/SampleLib STEER RAW)
49
947b5ea7 50set ( ELIBS "HLTbase CDB STEERBase")
6db31708 51
52include ("CMakehlt.conf")
53
54if (MODULE_SRCS)
55ALICE_Format (SRCS "SampleLib/" "" "${MODULE_SRCS}")
56endif(MODULE_SRCS)
57if (CLASS_HDRS)
58ALICE_Format (CINTHDRS "SampleLib/" "" "${CLASS_HDRS}")
59endif(CLASS_HDRS)
60if (MODULE_HDRS)
61ALICE_Format (HDRS "SampleLib/" "" "${MODULE_HDRS}")
62endif(MODULE_HDRS)
63if (MODULE_DHDR)
64ALICE_Format (DHDR "SampleLib/" "" "${MODULE_DHDR}")
65endif(MODULE_DHDR)
66
67if(NOT DHDR)
68 set(CINTAUTOLINK 1)
69endif(NOT DHDR)
70
71set ( EDEFINE ${HLTDEFS})
72string ( REGEX REPLACE "(-ansi|-pedantic-errors)" "" PACKCXXFLAGS ${CXXFLAGS})
73string ( REGEX REPLACE "(-ansi|-pedantic-errors)" "" PACKCFLAGS ${CFLAGS})
74string ( REPLACE "-pedantic-errors" "" PACKDCXXFLAGS ${CXXFLAGS})
75set ( PACKSOFLAGS ${HLTSOFLAGS})