]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CMakeLists.txt
Correct value for ROOT_HAS*
[u/mrichter/AliRoot.git] / HLT / 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 option(HLT_CUDA   "Build HLT GPU tracker using CUDA"   OFF)
17 option(HLT_OPENCL "Build HLT GPU tracker using OpenCL" OFF)
18
19 add_definitions(-Duse_aliroot -DUSE_ROOT -DROWHOUGHPARAMS)
20
21 # AliRoot debug mode
22 if(ALIDEBUG)
23     add_definitions(-DDEBUG -D__DEBUG)
24 else()
25     add_definitions(-DNDEBUG)
26 endif (ALIDEBUG)
27
28 # MLUC
29 if(ALIHLT_MLUCDIR)
30     add_definitions(-Duse_logging)
31     include_directories(${ALIHLT_MLUCDIR}/include)
32     link_directories(${ALIHLT_MLUCDIR}/lib/tgt_${ALICE_TARGET})
33 endif (ALIHLT_MLUCDIR) 
34
35 add_subdirectory(BASE)
36 add_subdirectory(CALO)
37 add_subdirectory(comp)
38 add_subdirectory(global)
39 add_subdirectory(EMCAL)
40 add_subdirectory(FMD)
41 add_subdirectory(ITS)
42 add_subdirectory(JET)
43 add_subdirectory(MUON)
44 add_subdirectory(pendolino)
45 add_subdirectory(PHOS)
46 add_subdirectory(RCU)
47 add_subdirectory(SampleLib)
48 add_subdirectory(TPCLib)
49 add_subdirectory(TRD)
50 add_subdirectory(trigger)
51 add_subdirectory(VZERO)
52 add_subdirectory(ZDC)
53 # Enable EVE if ROOT has OpenGL support
54 if(ROOT_HASOPENGL)
55     add_subdirectory(EVE)
56 endif()
57 add_subdirectory(QA)
58 add_subdirectory(rec)
59 add_subdirectory(shuttle)
60 add_subdirectory(sim)
61
62 message(STATUS "HLT enabled")