]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/TPCrec/CMakeLists.txt
Switching from CMAKE_SOURCE_DIR to AliRoot_SOURCE_DIR
[u/mrichter/AliRoot.git] / TPC / TPCrec / 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 TPCrec)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/TPC/${MODULE})
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${AliRoot_SOURCE_DIR}/ANALYSIS/ANALYSIS
25                     ${AliRoot_SOURCE_DIR}/ANALYSIS/ANALYSISalice
26                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatabase
27                     ${AliRoot_SOURCE_DIR}/RAW/RAWDatarec
28                     ${AliRoot_SOURCE_DIR}/STEER/CDB
29                     ${AliRoot_SOURCE_DIR}/STEER/ESD
30                     ${AliRoot_SOURCE_DIR}/STEER/STEER
31                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
32                     ${AliRoot_SOURCE_DIR}/TPC/TPCbase
33                     ${AliRoot_SOURCE_DIR}/TPC/TPCsim
34                    )
35
36 # Sources in alphabetical order
37 set(SRCS
38     AliClusters.cxx
39     AliComplexCluster.cxx
40     AliCosmicTracker.cxx
41     AliPadMax.cxx
42     AliTPCclusterer.cxx
43     AliTPCclustererKr.cxx
44     AliTPCclusterInfo.cxx
45     AliTPCclusterKr.cxx
46     AliTPCclusterMI.cxx
47     AliTPCClusterParam.cxx
48     AliTPCClustersRow.cxx
49     AliTPCCosmicTrackfit.cxx
50     AliTPCCosmicUtils.cxx
51     AliTPCpolyTrack.cxx
52     AliTPCQADataMakerRec.cxx
53     AliTPCReconstructor.cxx
54     AliTPCRecoParam.cxx
55     AliTPCseed.cxx
56     AliTPCtrack.cxx
57     AliTPCtracker.cxx
58     AliTPCtrackerSector.cxx
59     AliTPCTracklet.cxx
60     AliTPCvtpr.cxx
61    )
62
63 # Headers from sources
64 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
65
66 # Generate the dictionary
67 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
68 get_directory_property(incdirs INCLUDE_DIRECTORIES)
69 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
70
71 # Generate the ROOT map
72 # Dependecies
73 set(LIBDEPS STEERBase STEER CDB ESD RAWDatabase RAWDatarec ANALYSIS ANALYSISalice TPCbase TPCsim Graph)
74 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
75
76
77 # Add a library to the project using the specified source files
78 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
79
80 # Additional compilation flags
81 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
82
83 # System dependent: Modify the way the library is build
84 if(${CMAKE_SYSTEM} MATCHES Darwin)
85     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
86 endif(${CMAKE_SYSTEM} MATCHES Darwin)
87
88 # Installation
89 install(TARGETS ${MODULE}
90         ARCHIVE DESTINATION lib
91         LIBRARY DESTINATION lib)
92
93 install(FILES ${HDRS} DESTINATION include)