]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/CDB/CMakeLists.txt
Correct use of ROOT_INCLUDE_DIR
[u/mrichter/AliRoot.git] / STEER / CDB / CMakeLists.txt
CommitLineData
e9e48ff1 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 CDB)
18
19# Module include folders
427d561c 20include_directories(${AliRoot_SOURCE_DIR}/STEER/${MODULE})
e9e48ff1 21
22# Additional include directories
f0315837 23include_directories(${ROOT_INCLUDE_DIR}
427d561c 24 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
e9e48ff1 25 ${CMAKE_BINARY_DIR}/version/
26 )
27
28
29# Sources - alphabetical order
30set(SRCS
31 AliBaseCalibViewer.cxx
32 AliBaseCalibViewerGUI.cxx
33 AliCalibViewerGUItime.cxx
34 AliCDBDump.cxx
35 AliCDBEntry.cxx
36 AliCDBGrid.cxx
37 AliCDBHandler.cxx
38 AliCDBId.cxx
39 AliCDBLocal.cxx
40 AliCDBManager.cxx
41 AliCDBMetaData.cxx
42 AliCDBPath.cxx
43 AliCDBRunRange.cxx
44 AliCDBStorage.cxx
45 AliDCSGenDB.cxx
46 AliDCSSensorArray.cxx
47 AliDCSSensor.cxx
48 AliDCSValue.cxx
49 AliGRPDCS.cxx
50 AliOCDBtoolkit.cxx
51 AliPreprocessor.cxx
52 AliShuttleInterface.cxx
53 AliSplineFit.cxx
54 )
55
56# Headers from sources
57string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
58
59# Generate the dictionary
60# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
61get_directory_property(incdirs INCLUDE_DIRECTORIES)
62generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
63
9cfdd3fd 64set(ROOT_DEPENDENCIES Core GenVector Gpad Graf Gui Hist MathCore Matrix Minuit Net RIO Tree XMLParser)
65set(ALIROOT_DEPENDENCIES STEERBase)
66
0224bae4 67# Generate the ROOT map
68# Dependecies
9cfdd3fd 69set(LIBDEPS ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
0224bae4 70generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
71
7aa3ad25 72# Generate a PARfile target for this library
73add_target_parfile(${MODULE} "${SRCS}" "${HDRS}" "${MODULE}LinkDef.h" "${LIBDEPS}")
74
f82bfa66 75# Create an object to be reused in case of static libraries
76# Otherwise the sources will be compiled twice
6929fcdd 77add_library(${MODULE}-object OBJECT ${SRCS} G__${MODULE}.cxx)
139cbc46 78# Follow headers dependencies
79add_dependencies(${MODULE}-object ${ALIROOT_DEPENDENCIES})
f82bfa66 80# Add a library to the project using the object
6929fcdd 81add_library(${MODULE} SHARED $<TARGET_OBJECTS:CDB-object>)
f82bfa66 82
83# Linking library
9cfdd3fd 84target_link_libraries(${MODULE} ${ALIROOT_DEPENDENCIES} ${ROOT_DEPENDENCIES})
e9e48ff1 85
68aeb13b 86# Setting the correct headers for the object as gathered from the dependencies
87target_include_directories(${MODULE}-object PUBLIC $<TARGET_PROPERTY:${MODULE},INCLUDE_DIRECTORIES>)
88set_target_properties(${MODULE}-object PROPERTIES COMPILE_DEFINITIONS $<TARGET_PROPERTY:${MODULE},COMPILE_DEFINITIONS>)
89
6929fcdd 90# Public include folders that will be propagated to the dependecies
91target_include_directories(${MODULE} PUBLIC ${incdirs})
92
e9e48ff1 93# Additional compilation flags
68aeb13b 94set_target_properties(${MODULE}-object PROPERTIES COMPILE_FLAGS "")
e9e48ff1 95
96# System dependent: Modify the way the library is build
97if(${CMAKE_SYSTEM} MATCHES Darwin)
98 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
99endif(${CMAKE_SYSTEM} MATCHES Darwin)
100
101# Installation
102install(TARGETS ${MODULE}
103 ARCHIVE DESTINATION lib
104 LIBRARY DESTINATION lib)
105install(FILES ${HDRS} DESTINATION include)
f82bfa66 106
107# Static version if DA enabled
108if(ALIROOT_STATIC)
109 add_library(${MODULE}-static STATIC $<TARGET_OBJECTS:CDB-object>)
110 set_target_properties(${MODULE}-static PROPERTIES OUTPUT_NAME ${MODULE})
9cfdd3fd 111
112 # list of shared dependencies / the name of the variable containing the list of static ones
113 generate_static_dependencies("${ALIROOT_DEPENDENCIES}" "STATIC_ALIROOT_DEPENDENCIES")
9cfdd3fd 114 target_link_libraries(${MODULE}-static ${STATIC_ALIROOT_DEPENDENCIES} Root RootExtra)
d1d7d34a 115
116 # Public include folders that will be propagated to the dependecies
117 target_include_directories(${MODULE}-static PUBLIC ${incdirs})
118
f82bfa66 119 set_target_properties(${MODULE}-static PROPERTIES LINK_FLAGS "-Wl,--whole-archive")
120
121 # Installation
122 install(TARGETS ${MODULE}-static
123 ARCHIVE DESTINATION lib
124 LIBRARY DESTINATION lib)
125endif(ALIROOT_STATIC)