]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGGA/CaloTrackCorrelations/CMakeLists.txt
Missing macros
[u/mrichter/AliRoot.git] / PWGGA / CaloTrackCorrelations / 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 PWGGACaloTrackCorrelations)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/PWGGA/CaloTrackCorrelations)
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${AliRoot_SOURCE_DIR}/ANALYSIS/ANALYSIS
25                     ${AliRoot_SOURCE_DIR}/EMCAL/EMCALUtils
26                     ${AliRoot_SOURCE_DIR}/PHOS/PHOSUtils
27                     ${AliRoot_SOURCE_DIR}/PWG/CaloTrackCorrBase
28                     ${AliRoot_SOURCE_DIR}/STEER/AOD
29                     ${AliRoot_SOURCE_DIR}/STEER/ESD
30                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
31                    )
32
33 # Sources in alphabetical order
34 set(SRCS
35     AliAnaCalorimeterQA.cxx
36     AliAnaChargedParticles.cxx
37     AliAnaClusterPileUp.cxx
38     AliAnaElectron.cxx
39     AliAnaEMCALTriggerClusters.cxx
40     AliAnaGeneratorKine.cxx
41     AliAnaInsideClusterInvariantMass.cxx
42     AliAnaOmegaToPi0Gamma.cxx
43     AliAnaParticleHadronCorrelation.cxx
44     AliAnaParticleIsolation.cxx
45     AliAnaParticleJetFinderCorrelation.cxx
46     AliAnaParticleJetLeadingConeCorrelation.cxx
47     AliAnaParticlePartonCorrelation.cxx
48     AliAnaPhotonConvInCalo.cxx
49     AliAnaPhoton.cxx
50     AliAnaPi0.cxx
51     AliAnaPi0EbE.cxx
52     AliAnaRandomTrigger.cxx
53    )
54
55 # Headers from sources
56 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
57
58 # Generate the dictionary
59 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
60 get_directory_property(incdirs INCLUDE_DIRECTORIES)
61 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
62
63 set(ROOT_DEPENDENCIES Core EG Gpad Hist MathCore Physics RIO)
64 set(ALIROOT_DEPENDENCIES ANALYSIS AOD EMCALUtils ESD PHOSUtils STEERBase PWGCaloTrackCorrBase)
65
66 # Generate the ROOT map
67 # Dependecies
68 set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
69 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
70
71 # Create an object to be reused in case of static libraries 
72 # Otherwise the sources will be compiled twice
73 add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
74 # Add a library to the project using the object
75 add_library(${MODULE} SHARED $<TARGET_OBJECTS:${MODULE}-object>)
76 target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
77
78 # Setting the correct headers for the object as gathered from the dependencies
79 target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
80 set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
81
82 # Public include folders that will be propagated to the dependecies
83 target_include_directories(${MODULE} PUBLIC ${incdirs})
84
85 set(MODULE_COMPILE_FLAGS)
86 set(MODULE_LINK_FLAGS)
87
88 if(DATE_FOUND)
89     set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
90     set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
91 endif(DATE_FOUND)
92
93 # Additional compilation and linking flags
94 set(MODULE_COMPILE_FLAGS " ${MODULE_COMPILE_FLAGS}")
95
96 # System dependent: Modify the way the library is build
97 if(${CMAKE_SYSTEM} MATCHES Darwin)
98     set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
99 endif(${CMAKE_SYSTEM} MATCHES Darwin)
100
101 # Setting compilation flags for the object
102 set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
103 # Setting the linking flags for the library
104 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
105
106 # Installation
107 install(TARGETS ${MODULE}
108         ARCHIVE DESTINATION lib
109         LIBRARY DESTINATION lib)
110
111 install(FILES ${HDRS} DESTINATION include)
112
113 install(FILES macros/QA/AddTaskCalorimeterQA.C 
114               macros/QA/AddTaskPi0IMGammaCorrQA.C
115         DESTINATION PWGGA/CaloTrackCorrelations/macros/QA/
116        )