]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/TPCrec/CMakeLists.txt
TPC module
[u/mrichter/AliRoot.git] / TPC / TPCrec / CMakeLists.txt
CommitLineData
73ba6874 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
17set(MODULE TPCrec)
18
19# Module include folder
20include_directories(${CMAKE_SOURCE_DIR}/TPC/${MODULE})
21
22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
24 ${CMAKE_SOURCE_DIR}/ANALYSIS/ANALYSIS
25 ${CMAKE_SOURCE_DIR}/ANALYSIS/ANALYSISalice
26 ${CMAKE_SOURCE_DIR}/RAW/RAWDatabase
27 ${CMAKE_SOURCE_DIR}/RAW/RAWDatarec
28 ${CMAKE_SOURCE_DIR}/STEER/CDB
29 ${CMAKE_SOURCE_DIR}/STEER/ESD
30 ${CMAKE_SOURCE_DIR}/STEER/STEER
31 ${CMAKE_SOURCE_DIR}/STEER/STEERBase
32 ${CMAKE_SOURCE_DIR}/TPC/TPCbase
33 ${CMAKE_SOURCE_DIR}/TPC/TPCsim
34 )
35
36# Sources in alphabetical order
37set(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
64string(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
68get_directory_property(incdirs INCLUDE_DIRECTORIES)
69generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
70
71# Generate the ROOT map
72# Dependecies
73set(LIBDEPS STEERBase STEER CDB ESD RAWDatabase RAWDatarec ANALYSIS ANALYSISalice TPCbase TPCsim Graph)
74generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
75
76
77# Add a library to the project using the specified source files
78add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
79
80# Additional compilation flags
81set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
82
83# System dependent: Modify the way the library is build
84if(${CMAKE_SYSTEM} MATCHES Darwin)
85 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
86endif(${CMAKE_SYSTEM} MATCHES Darwin)
87
88# Installation
89install(TARGETS ${MODULE}
90 ARCHIVE DESTINATION lib
91 LIBRARY DESTINATION lib)
92
93install(FILES ${HDRS} DESTINATION include)