]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGGA/CaloTrackCorrelations/CMakeLists.txt
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGGA / CaloTrackCorrelations / CMakeLists.txt
CommitLineData
7d9133a4 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 PWGGACaloTrackCorrelations)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/PWGGA/CaloTrackCorrelations)
21
22# Additional include folders in alphabetical order except ROOT
23include_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
34set(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
56string(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
60get_directory_property(incdirs INCLUDE_DIRECTORIES)
61generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
62
63set(ROOT_DEPENDENCIES Core EG Gpad Hist MathCore Physics RIO)
64set(ALIROOT_DEPENDENCIES ANALYSIS AOD EMCALUtils ESD PHOSUtils STEERBase PWGCaloTrackCorrBase)
65
66# Generate the ROOT map
67# Dependecies
68set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
69generate_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
73add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
74# Add a library to the project using the object
75add_library(${MODULE} SHARED $<TARGET_OBJECTS:${MODULE}-object>)
76target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
77
78# Setting the correct headers for the object as gathered from the dependencies
79target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
80set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
81
82# Public include folders that will be propagated to the dependecies
83target_include_directories(${MODULE} PUBLIC ${incdirs})
84
85set(MODULE_COMPILE_FLAGS)
86set(MODULE_LINK_FLAGS)
87
88if(DATE_FOUND)
89 set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
90 set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
91endif(DATE_FOUND)
92
93# Additional compilation and linking flags
94set(MODULE_COMPILE_FLAGS " ${MODULE_COMPILE_FLAGS}")
95
96# System dependent: Modify the way the library is build
97if(${CMAKE_SYSTEM} MATCHES Darwin)
98 set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
99endif(${CMAKE_SYSTEM} MATCHES Darwin)
100
101# Setting compilation flags for the object
102set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
103# Setting the linking flags for the library
104set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
105
106# Installation
107install(TARGETS ${MODULE}
108 ARCHIVE DESTINATION lib
109 LIBRARY DESTINATION lib)
110
04484146 111install(FILES ${HDRS} DESTINATION include)
112
5cc52fc1 113# Install the macros
114install(DIRECTORY macros DESTINATION PWGGA/CaloTrackCorrelations)