]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CMakelibHLTshuttle.pkg
double for 4-momentum in Generate()
[u/mrichter/AliRoot.git] / HLT / CMakelibHLTshuttle.pkg
CommitLineData
5a238242 1# $Id: CMakelibHLTshuttle.pkg 46803 2011-01-28 22:12:12Z richterm $
6db31708 2#--------------------------------------------------------------------------------#
3# Package File for HLTshuttle #
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
29set ( LIBHLTSHUTTLE_VERSION 0)
30
31set ( CLASS_HDRS AliHLTPreprocessor.h)
32
33string ( REPLACE ".h" ".cxx" MODULE_SRCS "${CLASS_HDRS}" )
34
35set ( MODULE_HDRS ${CLASS_HDRS})
36
37set ( MODULE_DHDR )
38
39set ( EINCLUDE HLT/shuttle HLT/BASE STEER)
40
5a238242 41set ( LIBRARY_DEP -lHLTbase -lCDB)
6db31708 42
43include ("CMakehlt.conf")
44
45if (MODULE_SRCS)
46ALICE_Format (SRCS "shuttle/" "" "${MODULE_SRCS}")
47endif(MODULE_SRCS)
48if (CLASS_HDRS)
49ALICE_Format (CINTHDRS "shuttle/" "" "${CLASS_HDRS}")
50endif(CLASS_HDRS)
51if (MODULE_HDRS)
52ALICE_Format (HDRS "shuttle/" "" "${MODULE_HDRS}")
53endif(MODULE_HDRS)
54if (MODULE_DHDR)
55ALICE_Format (DHDR "shuttle/" "" "${MODULE_DHDR}")
56endif(MODULE_DHDR)
57
58if(NOT DHDR)
59 set(CINTAUTOLINK 1)
60endif(NOT DHDR)
61
62set ( EDEFINE ${HLTDEFS})
63set ( PACKCXXFLAGS ${HLTCXXFLAGS})
64add_definitions("-DLIBHLTSHUTTLE_VERSION=${LIBHLTSHUTTLE_VERSION}")
65set ( PACKCFLAGS ${HLTCLFAGS})
66set ( PACKDCXXFLAGS ${HLTDCXXFLAGS})
67set ( PACKSOFLAGS ${HLTSOFLAGS})