]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/MUONcalib/CMakeLists.txt
Update master to aliroot
[u/mrichter/AliRoot.git] / MUON / MUONcalib / 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 MUONcalib)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/MUON/${MODULE})
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIR}
24                     ${AliRoot_SOURCE_DIR}/MUON/MUONcore
25                     ${AliRoot_SOURCE_DIR}/MUON/MUONmapping
26                     ${AliRoot_SOURCE_DIR}/STEER/CDB
27                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
28                    )
29
30 # Sources in alphabetical order
31 set(SRCS
32     AliMUON2DStoreValidator.cxx
33     AliMUONCalibParamND.cxx
34     AliMUONCalibParamNF.cxx
35     AliMUONCalibParamNI.cxx
36     AliMUONCalibrationData.cxx
37     AliMUONErrorCounter.cxx
38     AliMUONGain.cxx
39     AliMUONGlobalCrateConfig.cxx
40     AliMUONPedestal.cxx
41     AliMUONRegionalTriggerConfig.cxx
42     AliMUONRejectList.cxx
43     AliMUONSparseHisto.cxx
44     AliMUONTrackerData.cxx
45     AliMUONTrackerIO.cxx
46     AliMUONTriggerChamberEfficiency.cxx
47     AliMUONTriggerCrateConfig.cxx
48     AliMUONTriggerDisplay.cxx
49     AliMUONTriggerEfficiencyCells.cxx
50     AliMUONTriggerIO.cxx
51     AliMUONTriggerLut.cxx
52     AliMUONTriggerScalers.cxx
53     AliMUONVCalibParam.cxx
54     AliMUONVTrackerData.cxx
55    )
56
57 # Headers from sources
58 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
59
60 # Generate the dictionary
61 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
62 get_directory_property(incdirs INCLUDE_DIRECTORIES)
63 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
64
65 # Dependencies
66 set(ROOT_DEPENDENCIES Core Gpad Hist MathCore Physics RIO Tree)
67 set(ALIROOT_DEPENDENCIES STEERBase CDB MUONcore MUONmapping)
68
69 # Generate the ROOT map
70 # Dependecies
71 set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
72 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
73
74 # Create an object to be reused in case of static libraries 
75 # Otherwise the sources will be compiled twice
76 add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
77 # Follow headers dependencies
78 add_dependencies(${MODULE}-object ${ALIROOT_DEPENDENCIES})
79 # Add a library to the project using the object
80 add_library(${MODULE} SHARED $<TARGET_OBJECTS:MUONcalib-object>)
81
82 # linking
83 target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
84
85 # Setting the correct headers for the object as gathered from the dependencies
86 target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
87 set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
88
89 # Additional compilation flags
90 set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS " ")
91
92 # System dependent: Modify the way the library is build
93 if(${CMAKE_SYSTEM} MATCHES Darwin)
94     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
95 endif(${CMAKE_SYSTEM} MATCHES Darwin)
96
97 # Installation
98 install(TARGETS ${MODULE}
99         ARCHIVE DESTINATION lib
100         LIBRARY DESTINATION lib)
101
102 install(FILES ${HDRS} DESTINATION include)
103
104 # Static version if DA enabled
105 if(ALIROOT_STATIC)
106     add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:MUONcalib-object>)
107     set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
108
109     # list of shared dependencies / the name of the variable containing the list of static ones
110     generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
111     target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
112     
113     # Public include folders that will be propagated to the dependecies
114     target_include_directories(${MODULE}-static PUBLIC ${incdirs})
115
116     set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
117
118     # Installation
119     install(TARGETS ${MODULE}-static
120             ARCHIVE DESTINATION lib
121             LIBRARY DESTINATION lib)
122 endif(ALIROOT_STATIC)
123