]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGUD/selectors/CMakeLists.txt
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGUD / selectors / CMakeLists.txt
CommitLineData
9620774e 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 PWGUDselectors)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/PWGUD/selectors
21 ${AliRoot_SOURCE_DIR}/PWGUD/selectors/dNdEta
22 ${AliRoot_SOURCE_DIR}/PWGUD/selectors/eventStat
23 ${AliRoot_SOURCE_DIR}/PWGUD/selectors/multiplicity
24 ${AliRoot_SOURCE_DIR}/PWGUD/selectors/trigger
25 )
26
27# Additional include folders in alphabetical order except ROOT
28include_directories(${ROOT_INCLUDE_DIRS}
29 ${AliRoot_SOURCE_DIR}/ANALYSIS/ANALYSIS
30 ${AliRoot_SOURCE_DIR}/ANALYSIS/ANALYSISalice
864866a0 31 ${AliRoot_SOURCE_DIR}/OADB
9620774e 32 ${AliRoot_SOURCE_DIR}/PWGUD/base
33 ${AliRoot_SOURCE_DIR}/STEER/ESD
34 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
35 )
36
37# Sources in alphabetical order
38set(SRCS
39 dNdEta/AlidNdEtaCorrectionTask.cxx
40 dNdEta/AlidNdEtaTask.cxx
41 eventStats/AliEventStatsTask.cxx
42 multiplicity/AliMultiplicityTask.cxx
43 trigger/AliTriggerTask.cxx
44 )
45
46# Headers from sources
47string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
48
49# Generate the dictionary
50# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
51get_directory_property(incdirs INCLUDE_DIRECTORIES)
52generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
53
54set(ROOT_DEPENDENCIES Core EG Gpad Hist MathCore Physics RIO Tree)
55set(ALIROOT_DEPENDENCIES ANALYSIS ANALYSISalice ESD STEERBase PWGUDbase)
56
57# Generate the ROOT map
58# Dependecies
59set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
60generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
61
62# Create an object to be reused in case of static libraries
63# Otherwise the sources will be compiled twice
64add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
65# Add a library to the project using the object
66add_library(${MODULE} SHARED $<TARGET_OBJECTS:${MODULE}-object>)
67target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
68
69# Setting the correct headers for the object as gathered from the dependencies
70target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
71set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
72
73# Public include folders that will be propagated to the dependecies
74target_include_directories(${MODULE} PUBLIC ${incdirs})
75
76set(MODULE_COMPILE_FLAGS)
77set(MODULE_LINK_FLAGS)
78
79if(DATE_FOUND)
80 set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
81 set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
82endif(DATE_FOUND)
83
84# Additional compilation and linking flags
85set(MODULE_COMPILE_FLAGS " ${MODULE_COMPILE_FLAGS}")
86
87# System dependent: Modify the way the library is build
88if(${CMAKE_SYSTEM} MATCHES Darwin)
89 set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
90endif(${CMAKE_SYSTEM} MATCHES Darwin)
91
92# Setting compilation flags for the object
93set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
94# Setting the linking flags for the library
95set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
96
97# Installation
98install(TARGETS ${MODULE}
99 ARCHIVE DESTINATION lib
100 LIBRARY DESTINATION lib)
101
ee68c703 102install(FILES ${HDRS} DESTINATION include)
103
104# Installing the macros
105install(DIRECTORY . DESTINATION PWGUD/selectors FILES_MATCHING PATTERN "*.C")