]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TRD/CMakeLists.txt
0f5fdc4889230040e2342c8832a51d5727757e27
[u/mrichter/AliRoot.git] / HLT / TRD / CMakeLists.txt
1 # **************************************************************************
2 # * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3 # *                                                                        *
4 # * Author: The ALICE Off-line Project.                                    *
5 # * Contributors are mentioned in the code where appropriate.              *
6 # *                                                                        *
7 # * Permission to use, copy, modify and distribute this software and its   *
8 # * documentation strictly for non-commercial purposes is hereby granted   *
9 # * without fee, provided that the above copyright notice appears in all   *
10 # * copies and that both the copyright notice and this permission notice   *
11 # * appear in the supporting documentation. The authors make no claims     *
12 # * about the suitability of this software for any purpose. It is          *
13 # * provided "as is" without express or implied warranty.                  *
14 # **************************************************************************
15
16 # Module
17 set(MODULE AliHLTTRD)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/HLT/TRD)
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${AliRoot_SOURCE_DIR}/HLT/BASE
25                     ${AliRoot_SOURCE_DIR}/HLT/BASE/util
26                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
27                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
28                     ${AliRoot_SOURCE_DIR}/STEER/CDB
29                     ${AliRoot_SOURCE_DIR}/STEER/ESD
30                     ${AliRoot_SOURCE_DIR}/STEER/STEER
31                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
32                     ${AliRoot_SOURCE_DIR}/TRD/TRDbase
33                     ${AliRoot_SOURCE_DIR}/TRD/TRDrec
34                    )
35
36 # Sources in alphabetical order
37 set(SRCS
38     AliHLTTRDAgent.cxx
39     AliHLTTRDCalibFitComponent.cxx
40     AliHLTTRDCalibHistoComponent.cxx
41     AliHLTTRDCalibrationComponent.cxx
42     AliHLTTRDCluster.cxx
43     AliHLTTRDClusterHistoComponent.cxx
44     AliHLTTRDClusterizerComponent.cxx
45     AliHLTTRDClusterizer.cxx
46     AliHLTTRDDefinitions.cxx
47     AliHLTTRDEsdWriterComponent.cxx
48     AliHLTTRDHistoMergerComponent.cxx
49     AliHLTTRDMonitorComponent.cxx
50     AliHLTTRDOfflineClusterizerComponent.cxx
51     AliHLTTRDOfflineTrackerV1Component.cxx
52     AliHLTTRDPreprocessorComponent.cxx
53     AliHLTTRDTrackerV1Component.cxx
54     AliHLTTRDTrack.cxx
55     AliHLTTRDTrackHistoComponent.cxx
56     AliHLTTRDTracklet.cxx
57     AliHLTTRDUtils.cxx
58     AliTRDonlineTrackingDataContainer.cxx
59    )
60
61 # Headers from sources
62 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
63 set(HDRS ${HDRS}
64     AliHLTTRDTrackletWordArray.h
65 )
66
67 # Generate the dictionary
68 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
69 get_directory_property(incdirs INCLUDE_DIRECTORIES)
70 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
71
72 # Generate the ROOT map
73 # Dependecies
74 set(LIBDEPS STEERBase STEER ESD CDB RAWDatabase RAWDatarec HLTbase AliHLTUtil TRDbase TRDrec Net)
75 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
76
77 # Add a library to the project using the specified source files
78 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
79 target_link_libraries(${MODULE} STEERBase STEER ESD CDB RAWDatabase RAWDatarec HLTbase AliHLTUtil TRDbase TRDrec Net)
80
81 # Additional compilation flags
82 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
83
84 # System dependent: Modify the way the library is build
85 if(${CMAKE_SYSTEM} MATCHES Darwin)
86     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
87 endif(${CMAKE_SYSTEM} MATCHES Darwin)
88
89 # Installation
90 install(TARGETS ${MODULE}
91         ARCHIVE DESTINATION lib
92         LIBRARY DESTINATION lib)
93
94 install(FILES ${HDRS} DESTINATION include)