]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TENDER/TenderSupplies/CMakeLists.txt
8be8d4c8ba2ca9f49c9c94a05815bab897726cee
[u/mrichter/AliRoot.git] / TENDER / TenderSupplies / 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 TenderSupplies)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/ANALYSIS/${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}/TENDER/Tender
27                     ${AliRoot_SOURCE_DIR}/EMCAL/EMCALbase
28                     ${AliRoot_SOURCE_DIR}/EMCAL/EMCALrec
29                     ${AliRoot_SOURCE_DIR}/EMCAL/EMCALUtils
30                     ${AliRoot_SOURCE_DIR}/CORRFW
31                     ${AliRoot_SOURCE_DIR}/OADB
32                     ${AliRoot_SOURCE_DIR}/PHOS/PHOSbase
33                     ${AliRoot_SOURCE_DIR}/PHOS/PHOSrec
34                     ${AliRoot_SOURCE_DIR}/PHOS/PHOSUtils
35                     ${AliRoot_SOURCE_DIR}/STEER/AOD
36                     ${AliRoot_SOURCE_DIR}/STEER/CDB
37                     ${AliRoot_SOURCE_DIR}/STEER/ESD
38                     ${AliRoot_SOURCE_DIR}/STEER/STEER
39                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
40                     ${AliRoot_SOURCE_DIR}/T0/T0rec
41                     ${AliRoot_SOURCE_DIR}/TOF/TOFbase
42                     ${AliRoot_SOURCE_DIR}/TOF/TOFrec
43                     ${AliRoot_SOURCE_DIR}/TPC/Base
44                     ${AliRoot_SOURCE_DIR}/TPC/TPCbase
45                     ${AliRoot_SOURCE_DIR}/TRD/TRDbase
46                     ${AliRoot_SOURCE_DIR}/VZERO/VZERObase
47                     ${AliRoot_SOURCE_DIR}/VZERO/VZEROrec
48                    )
49
50 # Sources
51 set(SRCS
52     AliAnalysisTaskVZEROEqFactorTask.cxx
53     AliEMCALTenderSupply.cxx
54     AliHMPIDTenderSupply.cxx
55     AliPHOSTenderSupply.cxx
56     AliPIDTenderSupply.cxx
57     AliT0TenderSupply.cxx
58     AliTOFTenderSupply.cxx
59     AliTPCTenderSupply.cxx
60     AliTrackFixTenderSupply.cxx
61     AliTRDTenderSupply.cxx
62     AliVtxTenderSupply.cxx
63     AliVZEROTenderSupply.cxx
64   )
65
66 # Headers from sources
67 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
68
69 # Generate the dictionary
70 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
71 get_directory_property(incdirs INCLUDE_DIRECTORIES)
72 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
73
74 # Generate the ROOT map
75 # Dependecies
76 set(LIBDEPS ANALYSIS ANALYSISalice Tender EMCALbase EMCALrec EMCALUtils CORRFW OADB PHOSbase PHOSrec PHOSUtils AOD CDB ESD STEER STEERBase T0rec TOFbase TOFrec TPCbase TRDbase VZERObase VZEROrec Core Geom Gpad Graf Hist MathCore Matrix Physics RIO Tree)
77 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
78
79 # Add a library to the project using the specified source files
80 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
81 target_link_libraries(${MODULE} ANALYSIS ANALYSISalice Tender EMCALbase EMCALrec EMCALUtils CORRFW OADB PHOSbase PHOSrec PHOSUtils AOD CDB ESD STEER STEERBase T0rec TOFbase TOFrec TPCbase TRDbase VZERObase VZEROrec Core Geom Gpad Graf Hist MathCore Matrix Physics RIO Tree)
82
83 # Additional compilation flags
84 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
85
86 # Linking the library
87 target_link_libraries(${MODULE} ${LIBDEPS})
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)
99
100 # Install macros
101 install(FILES AddTaskTender.C DESTINATION TENDER/TenderSupplies)
102