]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/PMDrec/CMakeLists.txt
Fixes for object target dependencies
[u/mrichter/AliRoot.git] / PMD / PMDrec / CMakeLists.txt
CommitLineData
82795f89 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 PMDrec)
18
19# Module include folder
427d561c 20include_directories(${AliRoot_SOURCE_DIR}/PMD/${MODULE})
82795f89 21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
427d561c 24 ${AliRoot_SOURCE_DIR}/PMD/PMDbase
25 ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
26 ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
27 ${AliRoot_SOURCE_DIR}/RAW/RAWDatasim
28 ${AliRoot_SOURCE_DIR}/STEER/CDB
29 ${AliRoot_SOURCE_DIR}/STEER/ESD
30 ${AliRoot_SOURCE_DIR}/STEER/STEER
31 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
82795f89 32 )
33
34# Sources in alphabetical order
35set(SRCS
36 AliPMDCalibGain.cxx
37 AliPMDCalibPedestal.cxx
38 AliPMDcludata.cxx
39 AliPMDclupid.cxx
40 AliPMDcluster.cxx
41 AliPMDClusterFinder.cxx
42 AliPMDClusteringV1.cxx
43 AliPMDClusteringV2.cxx
44 AliPMDEmpDiscriminator.cxx
45 AliPMDisocell.cxx
46 AliPMDNoiseCut.cxx
47 AliPMDQADataMakerRec.cxx
48 AliPMDrecdata.cxx
49 AliPMDrechit.cxx
50 AliPMDReconstructor.cxx
51 AliPMDRecoParam.cxx
52 AliPMDrecpoint1.cxx
53 AliPMDRecPoint.cxx
54 AliPMDtracker.cxx
55 AliPMDUtility.cxx
56 )
57
58# Headers from sources
59string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
60
61# Adding the extra headers
62set(HDRS
63 ${HDRS}
64 AliPMDClustering.h
65 AliPMDDiscriminator.h
66 )
67
68# Generate the dictionary
69# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
70get_directory_property(incdirs INCLUDE_DIRECTORIES)
71generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
72
bb9124d0 73set(ROOT_DEPENDENCIES Core EG Geom Graf Hist MathCore RIO Tree)
74set(ALIROOT_DEPENDENCIES STEERBase STEER CDB ESD RAWDatabase RAWDatarec RAWDatasim PMDbase)
75
82795f89 76# Generate the ROOT map
77# Dependecies
bb9124d0 78set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
82795f89 79generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
80
bb9124d0 81# Create an object to be reused in case of static libraries
82# Otherwise the sources will be compiled twice
83add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
139cbc46 84# Follow headers dependencies
85add_dependencies(${MODULE}-object ${ALIROOT_DEPENDENCIES})
bb9124d0 86# Add a library to the project using the object
87add_library(${MODULE} SHARED $<TARGET_OBJECTS:PMDrec-object>)
82795f89 88
bb9124d0 89# Linking
90target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
82795f89 91
68aeb13b 92# Setting the correct headers for the object as gathered from the dependencies
93target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
94set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
95
82795f89 96# Additional compilation flags
68aeb13b 97set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS " ")
82795f89 98
99# System dependent: Modify the way the library is build
100if(${CMAKE_SYSTEM} MATCHES Darwin)
101 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
102endif(${CMAKE_SYSTEM} MATCHES Darwin)
103
104# Installation
105install(TARGETS ${MODULE}
106 ARCHIVE DESTINATION lib
107 LIBRARY DESTINATION lib)
108
bb9124d0 109install(FILES ${HDRS} DESTINATION include)
110
111
112# Static version if DA enabled
113if(ALIROOT_STATIC)
114 add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:PMDrec-object>)
115 set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
116
117 # list of shared dependencies / the name of the variable containing the list of static ones
118 generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
119 target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
68aeb13b 120
121 # Public include folders that will be propagated to the dependecies
122 target_include_directories(${MODULE}-static PUBLIC ${incdirs})
123
bb9124d0 124 set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
125
126 # Installation
127 install(TARGETS ${MODULE}-static
128 ARCHIVE DESTINATION lib
129 LIBRARY DESTINATION lib)
130endif(ALIROOT_STATIC)