]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/PHOSbase/CMakeLists.txt
VZERO DAs + Object target dependencies
[u/mrichter/AliRoot.git] / PHOS / PHOSbase / 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 PHOSbase)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/PHOS/${MODULE})
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
25                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
26                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatasim
27                     ${AliRoot_SOURCE_DIR}/PHOS/PHOSUtils
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                    )
33
34 # Sources in alphabetical order
35 set(SRCS
36     AliPHOS.cxx
37     AliPHOSCalibData.cxx
38     AliPHOSClusterizer.cxx
39     AliPHOSClusterizerv1.cxx
40     AliPHOSCpvCalibData.cxx
41     AliPHOSCpvRecPoint.cxx
42     AliPHOSDigit.cxx
43     AliPHOSDigitizer.cxx
44     AliPHOSEmcBadChannelsMap.cxx
45     AliPHOSEmcCalibData.cxx
46     AliPHOSEmcRecPoint.cxx
47     AliPHOSFastRecParticle.cxx
48     AliPHOSGeometry.cxx
49     AliPHOSHit.cxx
50     AliPHOSImpact.cxx
51     AliPHOSLink.cxx
52     AliPHOSLoader.cxx
53     AliPHOSModuleMisalignment.cxx
54     AliPHOSPID.cxx
55     AliPHOSPulseGenerator.cxx
56     AliPHOSQAChecker.cxx
57     AliPHOSRawDigiProducer.cxx
58     AliPHOSRawFitterv0.cxx
59     AliPHOSRawFitterv1.cxx
60     AliPHOSRawFitterv2.cxx
61     AliPHOSRawFitterv3.cxx
62     AliPHOSRawFitterv4.cxx
63     AliPHOSRecoParam.cxx
64     AliPHOSReconstructor.cxx
65     AliPHOSRecParticle.cxx
66     AliPHOSRecPoint.cxx
67     AliPHOSPIDv1.cxx
68     AliPHOSSDigitizer.cxx
69     AliPHOSSimParam.cxx
70     AliPHOSSurvey1.cxx
71     AliPHOSSurvey.cxx
72     AliPHOSTick.cxx
73     AliPHOSTracker.cxx
74     AliPHOSTrackSegment.cxx
75     AliPHOSTrackSegmentMaker.cxx
76     AliPHOSTrackSegmentMakerv1.cxx
77     AliPHOSTrigger.cxx
78     AliPHOSTriggerParameters.cxx
79     AliPHOSTriggerRawDigit.cxx
80     AliPHOSTriggerRawDigiProducer.cxx
81     AliPHOSTriggerRawReader.cxx
82     AliPHOSTRURawReader.cxx
83
84    )
85
86 # Headers from sources
87 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
88
89 # Generate the dictionary
90 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
91 get_directory_property(incdirs INCLUDE_DIRECTORIES)
92 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
93
94 set(ROOT_DEPENDENCIES Core EG Geom Gpad Graf Hist MathCore Matrix Minuit Physics RIO Tree VMC)
95 set(ALIROOT_DEPENDENCIES STEERBase STEER CDB ESD RAWDatabase RAWDatarec RAWDatasim PHOSUtils)
96
97 # Generate the ROOT map
98 # Dependecies
99 set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
100 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
101
102 # Create an object to be reused in case of static libraries 
103 # Otherwise the sources will be compiled twice
104 add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
105 # Follow headers dependencies
106 add_dependencies(${MODULE}-object ${ALIROOT_DEPENDENCIES})
107 # Add a library to the project using the object
108 add_library(${MODULE} SHARED $<TARGET_OBJECTS:PHOSbase-object>)
109
110 # Linking
111 target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
112
113 # Additional compilation flags
114 set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "-O -g -fPIC")
115
116 # System dependent: Modify the way the library is build
117 if(${CMAKE_SYSTEM} MATCHES Darwin)
118     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
119 endif(${CMAKE_SYSTEM} MATCHES Darwin)
120
121 # Installation
122 install(TARGETS ${MODULE}
123         ARCHIVE DESTINATION lib
124         LIBRARY DESTINATION lib)
125
126 install(FILES ${HDRS} DESTINATION include)
127
128 # Static version if DA enabled
129 if(ALIROOT_STATIC)
130     add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:PHOSbase-object>)
131     set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
132
133     # list of shared dependencies / the name of the variable containing the list of static ones
134     generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
135     target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
136     set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
137
138     # Installation
139     install(TARGETS ${MODULE}-static
140             ARCHIVE DESTINATION lib
141             LIBRARY DESTINATION lib)
142 endif(ALIROOT_STATIC)