]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/CMakeLists.txt
Temporary fix for circular dependencies - DO NOT LEAVE IT LIKE THIS
[u/mrichter/AliRoot.git] / HLT / PHOS / CMakeLists.txt
CommitLineData
f077ee2b 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 AliHLTPHOS)
18
19# Module include folder
b5a0ad8b 20include_directories(${AliRoot_SOURCE_DIR}/HLT/PHOS)
f077ee2b 21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
b5a0ad8b 24 ${AliRoot_SOURCE_DIR}/EMCAL/EMCALraw
25 ${AliRoot_SOURCE_DIR}/EMCAL/EMCALUtils
26 ${AliRoot_SOURCE_DIR}/HLT/BASE
27 ${AliRoot_SOURCE_DIR}/HLT/BASE/util
28 ${AliRoot_SOURCE_DIR}/HLT/CALO
29 ${AliRoot_SOURCE_DIR}/PHOS/PHOSbase
30 ${AliRoot_SOURCE_DIR}/PHOS/PHOSrec
31 ${AliRoot_SOURCE_DIR}/PHOS/PHOSUtils
32 ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
33 ${AliRoot_SOURCE_DIR}/STEER/CDB
34 ${AliRoot_SOURCE_DIR}/STEER/STEER
35 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
f077ee2b 36 )
37
38# Sources in alphabetical order
39set(SRCS
40 AliHLTPHOSClusterizerComponent.cxx
41 AliHLTPHOSClusterizerComponentNbyN.cxx
42 AliHLTPHOSConstants.cxx
43 AliHLTPHOSDefinitions.cxx
44 AliHLTPHOSDigitMakerComponent.cxx
45 AliHLTPHOSGeometry.cxx
46 AliHLTPHOSMapper.cxx
47 AliHLTPHOSMonitorTriggerComponent.cxx
48 AliHLTPHOSRawAnalyzerComponentv3.cxx
49 AliHLTPHOSRawAnalyzerCrudeComponent.cxx
50 AliHLTPHOSRawAnalyzerCrude.cxx
51 AliHLTPHOSRawAnalyzer.cxx
52 AliHLTPHOSRawAnalyzerPeakFinder.cxx
53 AliHLTPHOSRecoParamHandler.cxx
54 AliHLTPHOSSanityInspector.cxx
55 offline/AliHLTPHOSDigitHandler.cxx
56 )
57
58# Headers from sources
59string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
60set(HDRS ${HDRS}
61 AliHLTPHOSCommonDefs.h
62 AliHLTPHOSCoordinate.h
63 )
64
65# Generate the dictionary
66# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
67get_directory_property(incdirs INCLUDE_DIRECTORIES)
68generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
69
70# Generate the ROOT map
71# Dependecies
72set(LIBDEPS STEER STEERBase CDB RAWDatabase AliHLTCalo AliHLTUtil EMCALraw EMCALUtils HLTbase PHOSUtils PHOSbase PHOSrec)
73generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
74
75# Add a library to the project using the specified source files
76add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
aff16a25 77target_link_libraries(${MODULE} STEER STEERBase CDB RAWDatabase AliHLTUtil EMCALraw EMCALUtils HLTbase PHOSUtils PHOSbase PHOSrec)
f077ee2b 78
79# Additional compilation flags
80set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
81
82# System dependent: Modify the way the library is build
83if(${CMAKE_SYSTEM} MATCHES Darwin)
84 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
85endif(${CMAKE_SYSTEM} MATCHES Darwin)
86
87# Installation
88install(TARGETS ${MODULE}
89 ARCHIVE DESTINATION lib
90 LIBRARY DESTINATION lib)
91
92install(FILES ${HDRS} DESTINATION include)