]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/MONITORzmq/CMakeLists.txt
MONITOR without ZEROMQ
[u/mrichter/AliRoot.git] / MONITOR / MONITORzmq / CMakeLists.txt
CommitLineData
3c77e1ef 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 MONITORzmq)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/MONITOR/${MODULE}
21 ${AliRoot_SOURCE_DIR}/MONITOR/alistoragemanager
22 ${AliRoot_SOURCE_DIR}/MONITOR/alionlinereco
23 )
24
25# Additional include folders in alphabetical order
26include_directories(${AliRoot_SOURCE_DIR}/MONITOR/MONITOR
27 ${AliRoot_SOURCE_DIR}/STEER/CDB
28 ${AliRoot_SOURCE_DIR}/STEER/ESD
29 ${AliRoot_SOURCE_DIR}/STEER/STEER
30 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
31 )
32
33# Sources in alphabetical order
34set(SRCS
35 AliCommunicationThread.cxx
36 AliDIMListenerThread.cxx
37 AliEventsCollectorThread.cxx
38 AliOnlineReconstruction.cxx
39 AliStorageAdministratorPanel.cxx
40 AliStorageAdministratorPanelListEvents.cxx
41 AliStorageAdministratorPanelMarkEvent.cxx
42 AliStorageAdministratorPanelSetStorageParams.cxx
43 AliStorageClientThread.cxx
44 AliStorageDatabase.cxx
45 AliStorageEventManager.cxx
46 AliStorageServerThread.cxx
47 )
48
49if(DIMDIR AND ODIR)
50 set(SRCS ${SRCS}
51 ${AliRoot_SOURCE_DIR}/MONITOR/MONITOR/SORNotifier.cxx
52 )
53 include_directories(${DIMDIR}/dim)
54 link_directories(${DIMDIR}/${ODIR})
55 add_definitions(-DALI_DIM)
56endif()
57
58# Headers from sources
59string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
60
61# Generate the dictionary
62# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
63get_directory_property(incdirs INCLUDE_DIRECTORIES)
64generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
65
66# Generate the ROOT map
67# Dependecies
68set(LIBDEPS STEERBase STEER ESD CDB MONITOR)
69generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
70
71# Add a library to the project using the specified source files
72add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
73target_link_libraries(${MODULE} STEERBase STEER ESD CDB MONITOR)
74if(DIMDIR AND ODIR)
75 target_link_libraries(${MODULE} dim)
76endif()
77
78# Additional compilation flags
79set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
80
81# System dependent: Modify the way the library is build
82if(${CMAKE_SYSTEM} MATCHES Darwin)
83 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
84endif(${CMAKE_SYSTEM} MATCHES Darwin)
85
86# Installation
87install(TARGETS ${MODULE}
88 ARCHIVE DESTINATION lib
89 LIBRARY DESTINATION lib)
90
91install(FILES ${HDRS} DESTINATION include)