]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/MUONcalib/CMakeLists.txt
VZERO DAs + Object target dependencies
[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_DIRS}
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     AliMUONVCalibParam.cxx
53     AliMUONVTrackerData.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 # Dependencies
65 set(ROOT_DEPENDENCIES Core Gpad Hist MathCore Physics RIO Tree)
66 set(ALIROOT_DEPENDENCIES STEERBase CDB MUONcore MUONmapping)
67
68 # Generate the ROOT map
69 # Dependecies
70 set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
71 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
72
73 # Create an object to be reused in case of static libraries 
74 # Otherwise the sources will be compiled twice
75 add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
76 # Follow headers dependencies
77 add_dependencies(${MODULE}-object ${ALIROOT_DEPENDENCIES})
78 # Add a library to the project using the object
79 add_library(${MODULE} SHARED $<TARGET_OBJECTS:MUONcalib-object>)
80
81 # linking
82 target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
83
84 # Additional compilation flags
85 set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "-O -g -fPIC")
86
87 # System dependent: Modify the way the library is build
88 if(${CMAKE_SYSTEM} MATCHES Darwin)
89     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
90 endif(${CMAKE_SYSTEM} MATCHES Darwin)
91
92 # Installation
93 install(TARGETS ${MODULE}
94         ARCHIVE DESTINATION lib
95         LIBRARY DESTINATION lib)
96
97 install(FILES ${HDRS} DESTINATION include)
98
99 # Static version if DA enabled
100 if(ALIROOT_STATIC)
101     add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:MUONcalib-object>)
102     set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
103
104     # list of shared dependencies / the name of the variable containing the list of static ones
105     generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
106     target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root)
107     set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
108
109     # Installation
110     install(TARGETS ${MODULE}-static
111             ARCHIVE DESTINATION lib
112             LIBRARY DESTINATION lib)
113 endif(ALIROOT_STATIC)
114