6db31708 |
1 | #--------------------------------------------------------------------------------# |
2 | # Package File for EveHLT # |
3 | # Author : Johny Jose (johny.jose@cern.ch) # |
4 | # Variables Defined : # |
5 | # # |
6 | # SRCS - C++ source files # |
7 | # HDRS - C++ header files # |
8 | # DHDR - ROOT Dictionary Linkdef header file # |
9 | # CSRCS - C source files # |
10 | # CHDRS - C header files # |
11 | # EINCLUDE - Include directories # |
12 | # EDEFINE - Compiler definitions # |
13 | # ELIBS - Extra libraries to link # |
14 | # ELIBSDIR - Extra library directories # |
15 | # PACKFFLAGS - Fortran compiler flags for package # |
16 | # PACKCXXFLAGS - C++ compiler flags for package # |
17 | # PACKCFLAGS - C compiler flags for package # |
18 | # PACKSOFLAGS - Shared library linking flags # |
19 | # PACKLDFLAGS - Module linker flags # |
20 | # PACKBLIBS - Libraries to link (Executables only) # |
21 | # EXPORT - Header files to be exported # |
22 | # CINTHDRS - Dictionary header files # |
23 | # CINTAUTOLINK - Set automatic dictionary generation # |
24 | # ARLIBS - Archive Libraries and objects for linking (Executables only) # |
25 | # SHLIBS - Shared Libraries and objects for linking (Executables only) # |
26 | #--------------------------------------------------------------------------------# |
27 | |
28 | file(GLOB SRCS "EveHLT/*.cxx") |
29 | |
30 | string ( REPLACE ".cxx" ".h" HDRS "${SRCS}" ) |
31 | |
32 | set ( DHDR EveHLT/EveHLTLinkDef.h) |
33 | |
34 | set ( EINCLUDE HLT/BASE HLT/EVE HLT/BASE/util HLT/BASE/HOMER EVE/EveHLT) |
35 | |
36 | if( ALICE_TARGET STREQUAL "win32gcc") |
37 | |
38 | set ( PACKCXXFLAGS ${CXXFLAGS} -I/usr/X11R6/include) |
39 | set ( ELIBSDIR /usr/X11R6/lib) |
40 | set ( ELIBS GL) |
41 | set ( PACKSOFLAGS ${SOFLAGS} -L${ALICE_ROOT}/lib/tgt_${ALICE_TARGET} -lSTEERBase -lTPCbase -lHLTbase -lAliHLTEve -L${ROOTLIBDIR} -lEve -lXMLParser -lGed -lGui) |
42 | |
43 | endif( ALICE_TARGET STREQUAL "win32gcc") |