]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TRD/CMakeLists.txt
Debug msg
[u/mrichter/AliRoot.git] / HLT / TRD / CMakeLists.txt
CommitLineData
b5a0ad8b 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
17set(MODULE AliHLTTRD)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/HLT/TRD)
21
22# Additional include folders in alphabetical order except ROOT
f0315837 23include_directories(${ROOT_INCLUDE_DIR}
b5a0ad8b 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
37set(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
62string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
63set(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
69get_directory_property(incdirs INCLUDE_DIRECTORIES)
70generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
71
72# Generate the ROOT map
73# Dependecies
c6761a1b 74set(LIBDEPS STEERBase STEER ESD CDB RAWDatabase RAWDatarec HLTbase AliHLTUtil TRDbase TRDrec Net STAT MLP)
b5a0ad8b 75generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
76
77# Add a library to the project using the specified source files
78add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
d76274fd 79target_link_libraries(${MODULE} ${LIBDEPS})
b5a0ad8b 80
81# Additional compilation flags
68aeb13b 82set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
b5a0ad8b 83
84# System dependent: Modify the way the library is build
85if(${CMAKE_SYSTEM} MATCHES Darwin)
86 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
87endif(${CMAKE_SYSTEM} MATCHES Darwin)
88
89# Installation
90install(TARGETS ${MODULE}
91 ARCHIVE DESTINATION lib
92 LIBRARY DESTINATION lib)
93
d76274fd 94install(FILES ${HDRS} DESTINATION include)