]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/StrangenessInJets/CMakeLists.txt
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGJE / StrangenessInJets / CMakeLists.txt
CommitLineData
d54442de 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 PWGJEStrangenessInJets)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/PWGJE/StrangenessInJets)
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}/ANALYSIS/ANALYSISalice
26 ${AliRoot_SOURCE_DIR}/PWGJE/PWGJE
27 ${AliRoot_SOURCE_DIR}/PWG/Tools
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 AliAnalysisTaskJetChem.cxx
36 AliAnalysisTaskV0sInJets.cxx
37 )
38
39# Headers from sources
40string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
41
42# Generate the dictionary
43# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
44get_directory_property(incdirs INCLUDE_DIRECTORIES)
45generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
46
47set(ROOT_DEPENDENCIES Core EG Gpad Hist MathCore Physics Tree)
48set(ALIROOT_DEPENDENCIES ANALYSIS ANALYSISalice AOD ESD PWGJE STEERBase PWGTools)
49
50# Generate the ROOT map
51# Dependecies
52set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
53generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
54
55# Create an object to be reused in case of static libraries
56# Otherwise the sources will be compiled twice
57add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
58# Add a library to the project using the object
59add_library(${MODULE} SHARED $<TARGET_OBJECTS:${MODULE}-object>)
60target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
61
62# Setting the correct headers for the object as gathered from the dependencies
63target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
64set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
65
66# Public include folders that will be propagated to the dependecies
67target_include_directories(${MODULE} PUBLIC ${incdirs})
68
69set(MODULE_COMPILE_FLAGS)
70set(MODULE_LINK_FLAGS)
71
72if(DATE_FOUND)
73 set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
74 set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
75endif(DATE_FOUND)
76
77# Additional compilation and linking flags
78set(MODULE_COMPILE_FLAGS " ${MODULE_COMPILE_FLAGS}")
79
80# System dependent: Modify the way the library is build
81if(${CMAKE_SYSTEM} MATCHES Darwin)
82 set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
83endif(${CMAKE_SYSTEM} MATCHES Darwin)
84
85# Setting compilation flags for the object
86set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
87# Setting the linking flags for the library
88set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
89
90# Installation
91install(TARGETS ${MODULE}
92 ARCHIVE DESTINATION lib
93 LIBRARY DESTINATION lib)
94
7793b359 95install(FILES ${HDRS} DESTINATION include)
96
97# Installing the macros
98install (DIRECTORY macros DESTINATION PWGJE/StrangenessInJets)