09b6c804 |
1 | # -*- mode: CMake -*- |
2 | #------------------------------------------------------------------------# |
3 | # Package File for FMDutil # |
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 | #------------------------------------------------------------------------# |
6db31708 |
28 | |
09b6c804 |
29 | set ( SRCS |
30 | AliFMDInput.cxx |
31 | AliFMDDisplay.cxx |
32 | AliFMDPattern.cxx |
33 | AliFMDFancy.cxx |
34 | AliFMDCalibFaker.cxx |
35 | AliFMDAlignFaker.cxx |
36 | AliFMDBaseDA.cxx |
37 | AliFMDPedestalDA.cxx |
38 | AliFMDGainDA.cxx |
6f202145 |
39 | AliFMDSpectraDisplay.cxx |
40 | AliFMDCalibDrawer.cxx) |
6db31708 |
41 | |
42 | string ( REPLACE ".cxx" ".h" HDRS "${SRCS}") |
6db31708 |
43 | set ( DHDR FMDutilLinkDef.h) |
6db31708 |
44 | set ( EINCLUDE RAW) |
45 | |
46 | if( ALICE_TARGET STREQUAL "win32gcc") |
09b6c804 |
47 | set ( PACKSOFLAGS |
48 | ${SOFLAGS} -L${ALICE_ROOT}/lib/tgt_${ALICE_TARGET} -lFMDrec -lFMDbase |
49 | -lSTEER -lCDB -lESD -lSTEERBase -lRAWDatarec -L${ROOTLIBDIR} -lGeom) |
6db31708 |
50 | endif( ALICE_TARGET STREQUAL "win32gcc") |
09b6c804 |
51 | # |
52 | # EOF |
53 | # |