]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AOD/CMakeLists.txt
Switching from CMAKE_SOURCE_DIR to AliRoot_SOURCE_DIR
[u/mrichter/AliRoot.git] / STEER / AOD / 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 AOD)
18
19 # Module include folders
20 include_directories(${AliRoot_SOURCE_DIR}/STEER/${MODULE})
21
22 # Additional include directories - alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS}
24                     ${AliRoot_SOURCE_DIR}/STEER/ESD
25                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
26                    )
27
28 # Sources - alphabetical order
29 set(SRCS
30     AliAODBranchReplicator.cxx
31     AliAODCaloCells.cxx
32     AliAODCaloCluster.cxx
33     AliAODCaloTrigger.cxx
34     AliAODcascade.cxx
35     AliAODCluster.cxx
36     AliAODDiJet.cxx
37     AliAODDimuon.cxx
38     AliAODEvent.cxx
39     AliAODExtension.cxx
40     AliAODFmdCluster.cxx
41     AliAODHandler.cxx
42     AliAODHeader.cxx
43     AliAODHMPIDrings.cxx
44     AliAODInputHandler.cxx
45     AliAODJet.cxx
46     AliAODJetEventBackground.cxx
47     AliAODMCHeader.cxx
48     AliAODMCParticle.cxx
49     AliAODPhoton.cxx
50     AliAODPid.cxx
51     AliAODpidUtil.cxx
52     AliAODPmdCluster.cxx
53     AliAODPWG4ParticleCorrelation.cxx
54     AliAODPWG4Particle.cxx
55     AliAODRecoDecay.cxx
56     AliAODRedCov.cxx
57     AliAODTagCreator.cxx
58     AliAODTrack.cxx
59     AliAODTracklets.cxx
60     AliAODTrdTrack.cxx
61     AliAODTrdTracklet.cxx
62     AliAODTZERO.cxx
63     AliAODv0.cxx
64     AliAODVertex.cxx
65     AliAODVZERO.cxx
66     AliAODZDC.cxx
67     AliNanoAODTrackMapping.cxx
68    )
69
70 # Sources from headers
71 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
72
73 # Generate the dictionary
74 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
75 get_directory_property(incdirs INCLUDE_DIRECTORIES)
76 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
77
78 # Generate the ROOT map
79 # Dependecies
80 set(LIBDEPS ESD STEERBase)
81 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
82
83 # Add a library to the project using the specified source files
84 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
85
86 # Additional compilation flags
87 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
88
89 # System dependent: Modify the way the library is build
90 if(${CMAKE_SYSTEM} MATCHES Darwin)
91     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
92 endif(${CMAKE_SYSTEM} MATCHES Darwin)
93
94 # Installation
95 install(TARGETS ${MODULE} 
96   ARCHIVE DESTINATION lib
97   LIBRARY DESTINATION lib)
98 install(FILES ${HDRS} DESTINATION include)