]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONbase/CMakeLists.txt
MUON DAs
[u/mrichter/AliRoot.git] / MUON / MUONbase / CMakeLists.txt
CommitLineData
b22a7396 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 MUONbase)
18
19# Module include folder
427d561c 20include_directories(${AliRoot_SOURCE_DIR}/MUON/${MODULE})
b22a7396 21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
427d561c 24 ${AliRoot_SOURCE_DIR}/MUON/MUONcalib
25 ${AliRoot_SOURCE_DIR}/MUON/MUONcore
26 ${AliRoot_SOURCE_DIR}/MUON/MUONgeometry
27 ${AliRoot_SOURCE_DIR}/MUON/MUONmapping
28 ${AliRoot_SOURCE_DIR}/MUON/MUONraw
29 ${AliRoot_SOURCE_DIR}/MUON/MUONtrigger
30 ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
31 ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
32 ${AliRoot_SOURCE_DIR}/RAW/RAWDatasim
33 ${AliRoot_SOURCE_DIR}/STEER/CDB
34 ${AliRoot_SOURCE_DIR}/STEER/ESD
35 ${AliRoot_SOURCE_DIR}/STEER/STEER
36 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
b22a7396 37 )
38
39# Sources in alphabetical order
40set(SRCS
41 AliMUONConstants.cxx
42 AliMUONDigitCalibrator.cxx
43 AliMUONDigit.cxx
44 AliMUONDigitMaker.cxx
45 AliMUONDigitStoreV1.cxx
46 AliMUONDigitStoreV1Iterator.cxx
47 AliMUONDigitStoreV2R.cxx
48 AliMUONDigitStoreV2S.cxx
49 AliMUONDigitStoreVImpl.cxx
50 AliMUONDigitStoreVImplIterator.cxx
51 AliMUONMathieson.cxx
52 AliMUONPadStatusMaker.cxx
53 AliMUONPadStatusMapMaker.cxx
54 AliMUONQAChecker.cxx
55 AliMUONRawCluster.cxx
56 AliMUONRawClusterV2.cxx
57 AliMUONRawWriter.cxx
58 AliMUONRealDigit.cxx
59 AliMUONRecoParam.cxx
60 AliMUONTOTCAStoreIterator.cxx
61 AliMUONTrackerQAChecker.cxx
62 AliMUONTriggerCircuit.cxx
63 AliMUONTriggerElectronics.cxx
64 AliMUONTriggerQAChecker.cxx
65 AliMUONTriggerStoreV1.cxx
66 AliMUONTriggerUtilities.cxx
67 AliMUONVCluster.cxx
68 AliMUONVDigit.cxx
69 AliMUONVDigitStore.cxx
70 AliMUONVQAChecker.cxx
71 AliMUONVTriggerStore.cxx
72 )
73
74# Headers from sources
75string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
76
77# Generate the dictionary
78# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
79get_directory_property(incdirs INCLUDE_DIRECTORIES)
80generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
81
c55bd1a6 82# Dependencies
83set(ROOT_DEPENDENCIES Core Graf Hist MathCore RIO Tree)
84set(ALIROOT_DEPENDENCIES STEERBase STEER CDB ESD RAWDatabase RAWDatarec RAWDatasim MUONcore MUONmapping MUONraw MUONcalib MUONgeometry MUONtrigger)
85
b22a7396 86# Generate the ROOT map
87# Dependecies
c55bd1a6 88set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
b22a7396 89generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
90
c55bd1a6 91# Create an object to be reused in case of static libraries
92# Otherwise the sources will be compiled twice
93add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
94# Add a library to the project using the object
95add_library(${MODULE} SHARED $<TARGET_OBJECTS:MUONbase-object>)
b22a7396 96
c55bd1a6 97# linking
98target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
b22a7396 99
100# Additional compilation flags
c55bd1a6 101set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "-O -g -fPIC")
b22a7396 102
103# System dependent: Modify the way the library is build
104if(${CMAKE_SYSTEM} MATCHES Darwin)
105 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
106endif(${CMAKE_SYSTEM} MATCHES Darwin)
107
108# Installation
109install(TARGETS ${MODULE}
110 ARCHIVE DESTINATION lib
111 LIBRARY DESTINATION lib)
112
c55bd1a6 113install(FILES ${HDRS} DESTINATION include)
114
115# Static version if DA enabled
116if(ALIROOT_STATIC)
117 add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:MUONbase-object>)
118 set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
119
120 # list of shared dependencies / the name of the variable containing the list of static ones
121 generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
122 target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
123 set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
124
125 # Installation
126 install(TARGETS ${MODULE}-static
127 ARCHIVE DESTINATION lib
128 LIBRARY DESTINATION lib)
129endif(ALIROOT_STATIC)