]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/alimdc/CMakeLists.txt
Switching from CMAKE_SOURCE_DIR to AliRoot_SOURCE_DIR
[u/mrichter/AliRoot.git] / RAW / alimdc / 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 alimdc)
18 include_directories(${AliRoot_SOURCE_DIR}/${MODULE})
19
20 # Aditional include folders in alphabetical order except ROOT
21 include_directories(${ROOT_INCLUDE_DIRS} 
22                     ${AliRoot_SOURCE_DIR}/RAW/MDC
23                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
24                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
25                     ${AliRoot_SOURCE_DIR}/STEER/ESD
26                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
27                    )
28
29 link_directories(${ROOT_LIBDIR})
30
31 # ROOT libraries that are not in root-config --libs
32 set(ROOTEXTRALIBS Geom VMC Minuit)
33
34 # Add an executable to the project using the specified source files
35 add_executable(${MODULE} alimdc_main.cxx)
36 target_link_libraries(${MODULE} STEERBase MDC RAWDatabase RAWDatarec ESD  ${ROOTEXTRALIBS} ${ROOT_LIBRARIES})
37
38 # Installation
39 install(TARGETS ${MODULE} RUNTIME DESTINATION bin)