]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/T0base/CMakeLists.txt
T0 module
[u/mrichter/AliRoot.git] / T0 / T0base / 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 T0base)
18
19 # Module include folder
20 include_directories(${CMAKE_SOURCE_DIR}/T0/${MODULE})
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${CMAKE_SOURCE_DIR}/RAW/RAWDatabase
25                     ${CMAKE_SOURCE_DIR}/RAW/RAWDatarec
26                     ${CMAKE_SOURCE_DIR}/RAW/RAWDatasim
27                     ${CMAKE_SOURCE_DIR}/STEER/CDB
28                     ${CMAKE_SOURCE_DIR}/STEER/ESD
29                     ${CMAKE_SOURCE_DIR}/STEER/STEER
30                     ${CMAKE_SOURCE_DIR}/STEER/STEERBase
31                    )
32
33 # Sources in alphabetical order
34 set(SRCS
35     AliT0Align.cxx
36     AliT0CalibData.cxx
37     AliT0CalibLatency.cxx
38     AliT0CalibTimeEq.cxx
39     AliT0CalibWalk.cxx
40     AliT0.cxx
41     AliT0digit.cxx
42     AliT0Digitizer.cxx
43     AliT0hit.cxx
44     AliT0LookUpKey.cxx
45     AliT0LookUpValue.cxx
46     AliT0MisAligner.cxx
47     AliT0Parameters.cxx
48     AliT0QAChecker.cxx
49     AliT0RawData.cxx
50     AliT0RawReader.cxx
51     AliT0RecPoint.cxx
52     AliT0Trigger.cxx
53     AliT0TriggerParameters.cxx
54    )
55
56 # Headers from sources
57 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
58
59 # Generate the dictionary
60 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
61 get_directory_property(incdirs INCLUDE_DIRECTORIES)
62 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
63
64 # Generate the ROOT map
65 # Dependecies
66 set(LIBDEPS STEERBase STEER CDB ESD RAWDatabase RAWDatarec RAWDatasim)
67 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
68
69
70 # Add a library to the project using the specified source files
71 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
72
73 # Additional compilation flags
74 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
75
76 # System dependent: Modify the way the library is build
77 if(${CMAKE_SYSTEM} MATCHES Darwin)
78     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
79 endif(${CMAKE_SYSTEM} MATCHES Darwin)
80
81 # Installation
82 install(TARGETS ${MODULE}
83         ARCHIVE DESTINATION lib
84         LIBRARY DESTINATION lib)
85
86 install(FILES ${HDRS} DESTINATION include)