]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CMakelibAliHLTSample.pkg
Removing some meaningless const (coverity)
[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
947b5ea7 38 AliHLTDummyComponent.h
39 )
6db31708 40
41string ( REPLACE ".h" ".cxx" MODULE_SRCS "${CLASS_HDRS}" )
42
43set ( MODULE_HDRS ${CLASS_HDRS})
44
45set ( MODULE_DHDR )
46
47set ( EINCLUDE HLT/BASE HLT/shuttle HLT/SampleLib STEER RAW)
48
947b5ea7 49set ( ELIBS "HLTbase CDB STEERBase")
6db31708 50
51include ("CMakehlt.conf")
52
53if (MODULE_SRCS)
54ALICE_Format (SRCS "SampleLib/" "" "${MODULE_SRCS}")
55endif(MODULE_SRCS)
56if (CLASS_HDRS)
57ALICE_Format (CINTHDRS "SampleLib/" "" "${CLASS_HDRS}")
58endif(CLASS_HDRS)
59if (MODULE_HDRS)
60ALICE_Format (HDRS "SampleLib/" "" "${MODULE_HDRS}")
61endif(MODULE_HDRS)
62if (MODULE_DHDR)
63ALICE_Format (DHDR "SampleLib/" "" "${MODULE_DHDR}")
64endif(MODULE_DHDR)
65
66if(NOT DHDR)
67 set(CINTAUTOLINK 1)
68endif(NOT DHDR)
69
70set ( EDEFINE ${HLTDEFS})
71string ( REGEX REPLACE "(-ansi|-pedantic-errors)" "" PACKCXXFLAGS ${CXXFLAGS})
72string ( REGEX REPLACE "(-ansi|-pedantic-errors)" "" PACKCFLAGS ${CFLAGS})
73string ( REPLACE "-pedantic-errors" "" PACKDCXXFLAGS ${CXXFLAGS})
74set ( PACKSOFLAGS ${HLTSOFLAGS})