]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGDQ/base/CMakeLists.txt
EMCAL/DCAL Trigger Mapping for Run 2
[u/mrichter/AliRoot.git] / PWGDQ / base / CMakeLists.txt
CommitLineData
dc36458f 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 PWGDQbase)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/PWGDQ/base)
21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
24 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
25 )
26
27# Sources in alphabetical order
28set(SRCS
29 AliQuarkoniaAcceptance.cxx
30 AliQuarkoniaEfficiency.cxx
31 )
32
33# Headers from sources
34string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
35
36# Generate the dictionary
37# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
38get_directory_property(incdirs INCLUDE_DIRECTORIES)
39generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
40
41set(ROOT_DEPENDENCIES Core Hist RIO)
42set(ALIROOT_DEPENDENCIES STEERBase)
43
44# Generate the ROOT map
45# Dependecies
46set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
47generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
48
49# Create an object to be reused in case of static libraries
50# Otherwise the sources will be compiled twice
51add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
52# Add a library to the project using the object
53add_library(${MODULE} SHARED $<TARGET_OBJECTS:${MODULE}-object>)
54target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
55
56# Setting the correct headers for the object as gathered from the dependencies
57target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
58set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
59
60# Public include folders that will be propagated to the dependecies
61target_include_directories(${MODULE} PUBLIC ${incdirs})
62
63set(MODULE_COMPILE_FLAGS)
64set(MODULE_LINK_FLAGS)
65
66if(DATE_FOUND)
67 set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
68 set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
69endif(DATE_FOUND)
70
71# Additional compilation and linking flags
72set(MODULE_COMPILE_FLAGS " ${MODULE_COMPILE_FLAGS}")
73
74# System dependent: Modify the way the library is build
75if(${CMAKE_SYSTEM} MATCHES Darwin)
76 set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
77endif(${CMAKE_SYSTEM} MATCHES Darwin)
78
79# Setting compilation flags for the object
80set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
81# Setting the linking flags for the library
82set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
83
84# Installation
85install(TARGETS ${MODULE}
86 ARCHIVE DESTINATION lib
87 LIBRARY DESTINATION lib)
88
89install(FILES ${HDRS} DESTINATION include)