]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/TOFbase/CMakeLists.txt
Dummy implementation
[u/mrichter/AliRoot.git] / TOF / TOFbase / CMakeLists.txt
CommitLineData
6cc87626 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 TOFbase)
18
19# Module include folder
427d561c 20include_directories(${AliRoot_SOURCE_DIR}/TOF/${MODULE})
6cc87626 21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
427d561c 24 ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
25 ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
26 ${AliRoot_SOURCE_DIR}/RAW/RAWDatasim
27 ${AliRoot_SOURCE_DIR}/STEER/CDB
28 ${AliRoot_SOURCE_DIR}/STEER/ESD
29 ${AliRoot_SOURCE_DIR}/STEER/STEER
30 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
6cc87626 31 )
32
33# Sources in alphabetical order
34set(SRCS
35 AliTOFAlignment.cxx
36 AliTOFArray.cxx
37 AliTOFCableLengthMap.cxx
38 AliTOFcalib.cxx
39 AliTOFcalibHisto.cxx
40 AliTOFChainSummaryData.cxx
41 AliTOFChannelOffline.cxx
42 AliTOFChannelOnlineArray.cxx
43 AliTOFChannelOnline.cxx
44 AliTOFChannelOnlineStatusArray.cxx
45 AliTOFChannelOnlineStatus.cxx
46 AliTOFCTPLatency.cxx
47 AliTOFDaConfigHandler.cxx
48 AliTOFDataDCS.cxx
49 AliTOFDCSmaps.cxx
50 AliTOFDecoder.cxx
51 AliTOFDecoderSummaryData.cxx
52 AliTOFDecoderV2.cxx
53 AliTOFDeltaBCOffset.cxx
54 AliTOFdigit.cxx
55 AliTOFDigitMap.cxx
56 AliTOFDRMSummaryData.cxx
57 AliTOFFEEDump.cxx
58 AliTOFFEEReader.cxx
59 AliTOFFormatDCS.cxx
60 AliTOFGeometry.cxx
61 AliTOFHitDataBuffer.cxx
62 AliTOFHitData.cxx
63 AliTOFHitField.cxx
64 AliTOFLTMSummaryData.cxx
65 AliTOFLvHvDataPoints.cxx
66 AliTOFNoiseConfigHandler.cxx
67 AliTOFPreprocessor.cxx
68 AliTOFPreprocessorFDR.cxx
69 AliTOFrawData.cxx
70 AliTOFRawMap.cxx
71 AliTOFRawStream.cxx
72 AliTOFReadoutInfo.cxx
4ff59d5b 73 AliTOFRecoParam.cxx
6cc87626 74 AliTOFResponseParams.cxx
75 AliTOFRunParams.cxx
4ff59d5b 76 AliTOFSDigit.cxx
6cc87626 77 AliTOFT0Fill.cxx
78 AliTOFT0FillOnlineCalib.cxx
79 AliTOFTDCErrorBuffer.cxx
80 AliTOFTDCError.cxx
81 AliTOFTDCHitBuffer.cxx
82 AliTOFTDCHit.cxx
83 AliTOFTRMSummaryData.cxx
84 )
85
86# Headers from sources
87string(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
91get_directory_property(incdirs INCLUDE_DIRECTORIES)
92generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
93
4ff59d5b 94set(ROOT_DEPENDENCIES )
95set(ALIROOT_DEPENDENCIES STEERBase STEER ESD CDB RAWDatabase RAWDatarec RAWDatasim)
96
6cc87626 97# Generate the ROOT map
98# Dependecies
4ff59d5b 99set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
6cc87626 100generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
101
4ff59d5b 102# Create an object to be reused in case of static libraries
103# Otherwise the sources will be compiled twice
104add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
105# Add a library to the project using the object
106add_library(${MODULE} SHARED $<TARGET_OBJECTS:TOFbase-object>)
6cc87626 107
4ff59d5b 108# Linking
109target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
6cc87626 110
111# Additional compilation flags
4ff59d5b 112set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "-O -g -fPIC")
6cc87626 113
114# System dependent: Modify the way the library is build
115if(${CMAKE_SYSTEM} MATCHES Darwin)
116 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
117endif(${CMAKE_SYSTEM} MATCHES Darwin)
118
119# Installation
120install(TARGETS ${MODULE}
121 ARCHIVE DESTINATION lib
122 LIBRARY DESTINATION lib)
123
4ff59d5b 124install(FILES ${HDRS} DESTINATION include)
125
126# Static version if DA enabled
127if(ALIROOT_STATIC)
128 add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:TOFbase-object>)
129 set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
130
131 # list of shared dependencies / the name of the variable containing the list of static ones
132 generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
133 target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
134 set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
135
136 # Installation
137 install(TARGETS ${MODULE}-static
138 ARCHIVE DESTINATION lib
139 LIBRARY DESTINATION lib)
140endif(ALIROOT_STATIC)