]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/alionlinereco/CMakeLists.txt
DATE flags
[u/mrichter/AliRoot.git] / MONITOR / alionlinereco / CMakeLists.txt
CommitLineData
6b30c614 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 include folder
17include_directories(${AliRoot_SOURCE_DIR}/MONITOR/alionlinereco
18 )
19
20# Additional include folders in alphabetical order
21include_directories(${AliRoot_SOURCE_DIR}/MONITOR/MONITOR
22 ${AliRoot_SOURCE_DIR}/MONITOR/MONITORzmq
23 ${AliRoot_SOURCE_DIR}/STEER/CDB
24 ${AliRoot_SOURCE_DIR}/STEER/STEER
25 ${AliRoot_SOURCE_DIR}/STEER/STEERBase
26 )
27
28add_definitions(-DZMQ)
29
30if(DIMDIR AND ODIR)
31 link_directories(${DIMDIR}/${ODIR})
32endif()
33
6b30c614 34# alistorage executable
35add_executable(alionlinereco onlinereco.cxx)
36target_link_libraries(alionlinereco MONITOR MONITORzmq STEERBase STEER)
ca331a9c 37
38set(MODULE_COMPILE_FLAGS)
39set(MODULE_LINK_FLAGS)
40
41if(DATE_FOUND)
42 set(MODULE_COMPILE_FLAGS "${DATE_CFLAGS}")
43 set(MODULE_LINK_FLAGS "${DATE_LDFLAGS} ${DATE_LIBS}")
44endif(DATE_FOUND)
45
46# Additional compilation and linking flags
47set(MODULE_COMPILE_FLAGS "-O -g ${MODULE_COMPILE_FLAGS}")
48
49# System dependent: Modify the way the library is build
50if(${CMAKE_SYSTEM} MATCHES Darwin)
51 set(MODULE_LINK_FLAGS "-undefined dynamic_lookup ${MODULE_LINK_FLAGS}")
52endif(${CMAKE_SYSTEM} MATCHES Darwin)
53
54# Setting target compile and linking flags
55set_target_properties(alionlinereco PROPERTIES COMPILE_FLAGS "${MODULE_COMPILE_FLAGS}")
56set_target_properties(alionlinereco PROPERTIES LINK_FLAGS "${MODULE_LINK_FLAGS}")
57
6b30c614 58if(PYTHIA6)
59 target_link_libraries(alionlinereco EVGEN HepMC HepMCParser)
60endif(PYTHIA6)
61
62# Installation
63install(TARGETS alionlinereco RUNTIME DESTINATION bin)
64
65