]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/MONITORzmq/CMakeLists.txt
EMCAL/DCAL Trigger Mapping for Run 2
[u/mrichter/AliRoot.git] / MONITOR / MONITORzmq / CMakeLists.txt
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
17 set(MODULE MONITORzmq)
18
19 # Module include folder
20 include_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
26 include_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
34 set(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
49 if(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)
56 endif()
57
58 # Headers from sources
59 string(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
63 get_directory_property(incdirs INCLUDE_DIRECTORIES)
64 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
65
66 # Generate the ROOT map
67 # Dependecies
68 set(LIBDEPS STEERBase STEER ESD CDB MONITOR zmq)
69 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
70
71 # Add a library to the project using the specified source files
72 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
73 target_link_libraries(${MODULE} STEERBase STEER ESD CDB MONITOR zmq)
74 if(DIMDIR AND ODIR)
75     target_link_libraries(${MODULE} dim)
76 endif()
77
78 # Additional compilation flags
79 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
80
81 # System dependent: Modify the way the library is build
82 if(${CMAKE_SYSTEM} MATCHES Darwin)
83     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
84 endif(${CMAKE_SYSTEM} MATCHES Darwin)
85
86 # Installation
87 install(TARGETS ${MODULE}
88         ARCHIVE DESTINATION lib
89         LIBRARY DESTINATION lib)
90
91 install(FILES ${HDRS} DESTINATION include)