]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/JETAN/CMakeLists.txt
e2c63833e43d1ccbfb5fa2e7b17264d357e186be
[u/mrichter/AliRoot.git] / JETAN / JETAN / 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 JETAN)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/JETAN/${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}/EMCAL/EMCALUtils
27                     ${AliRoot_SOURCE_DIR}/STEER/AOD
28                     ${AliRoot_SOURCE_DIR}/STEER/ESD
29                     ${AliRoot_SOURCE_DIR}/STEER/STEERBase
30                    )
31
32 # Sources in alphabetical order
33 set(SRCS
34     AliAnalysisTaskDiJets.cxx
35     AliAnalysisTaskFastEmbedding.cxx
36     AliAnalysisTaskJetsFinder.cxx
37     AliAnalysisTaskJetsReader.cxx
38     AliAnalysisTaskKMeans.cxx
39     AliCdfJetFinder.cxx
40     AliCdfJetHeader.cxx
41     AliDAJetFinder.cxx
42     AliDAJetHeader.cxx
43     AliEventShape.cxx
44     AliJetBkg.cxx
45     AliJetCalTrk.cxx
46     AliJetFillCalTrkEvent.cxx
47     AliJetFillCalTrkTrack.cxx
48     AliJetFillCalTrkTrackMC.cxx
49     AliJetFinder.cxx
50     AliJetHeader.cxx
51     AliJetHistos.cxx
52     AliJetKineReaderHeader.cxx
53     AliJetReader.cxx
54     AliJetReaderHeader.cxx
55     AliKMeansClustering.cxx
56     AliUA1JetFinder.cxx
57     AliUA1JetHeaderV1.cxx
58    )
59
60 # Headers from sources
61 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
62
63 # Generate the dictionary
64 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
65 get_directory_property(incdirs INCLUDE_DIRECTORIES)
66 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
67
68 # Generate the ROOT map
69 # Dependecies
70 set(LIBDEPS STEERBase ESD AOD ANALYSIS ANALYSISalice EMCALUtils EG Eve MathMore Net Smatrix)
71 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
72
73 # Add a library to the project using the specified source files
74 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
75
76 # Additional compilation flags
77 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
78
79 # System dependent: Modify the way the library is build
80 if(${CMAKE_SYSTEM} MATCHES Darwin)
81     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
82 endif(${CMAKE_SYSTEM} MATCHES Darwin)
83
84 # Installation
85 install(TARGETS ${MODULE}
86         ARCHIVE DESTINATION lib
87         LIBRARY DESTINATION lib)
88
89 install(FILES ${HDRS} DESTINATION include)