]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/CMakeLists.txt
TPC module
[u/mrichter/AliRoot.git] / TPC / 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 add_subdirectory(TPCbase)
17 add_subdirectory(TPCutil)
18 add_subdirectory(TPCcalib)
19 add_subdirectory(TPCrec)
20 add_subdirectory(TPCsim)
21 add_subdirectory(TPCmon)
22
23 # Installing the mapping
24 install(DIRECTORY mapping DESTINATION TPC)
25
26 # Installing the macros
27 # Do not forget the ending / from macros/
28 # The / will point to install the content of the folder to 
29 # macros/TPC. Without the / it will create a new folder 
30 # macros/TPC/macros
31 install(DIRECTORY macros/ DESTINATION macros/TPC)
32
33 # Install root & dat files
34 set(ROOTFILES 
35     AliTPCprf2dGEM.root
36     AliTPCprf2d.root
37     CovMatrixDB_PbPb6000_B0.4T.root
38     CovMatrixDB_pp_B0.4T.root
39    )
40
41 set(DATFILES
42     conn_iroc.dat
43     conn_oroc.dat
44    )
45
46 install(FILES ${ROOTFILES} ${DATFILES} DESTINATION TPC)