]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CMakeLists.txt
DA rpms
[u/mrichter/AliRoot.git] / CMakeLists.txt
CommitLineData
d50827fc 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#--------------------------------------------------------------------------#
17# Set Basic CMake Configuration #
18#--------------------------------------------------------------------------#
e969a926 19
139cbc46 20cmake_minimum_required(VERSION 2.8.11 FATAL_ERROR)
e969a926 21
d50827fc 22project(AliRoot CXX C)
bf4c2121 23
d50827fc 24# Path to additonal modules
c2f9135f 25set(CMAKE_MODULE_PATH "${AliRoot_SOURCE_DIR}/cmake")
26
27# AliRoot version extracted from Git repository
28# Sets 4 git variables
29# - GIT_REFSPEC - complete name of the current reference
30# - ALIROOT_BRANCH - name of the branch or tag extracted from the current reference
31# - GIT_SHA1 - current hash in the long format
32# - GIT_SHORT_SHA1 - current hash in the short format
33# - ALIROOT_VERSION = ALIROOT_BRANCH
34# - ALIROOT_REVISION = GIT_SHORT_SHA1
35include(CheckGitVersion)
b22a7396 36
37# - CLANG_MAJOR.CLANG_MINOR or
38# - GCC_MAJOR.GCC_MINOR.GCC_PATCH
39include(CheckCompiler)
40
c4faffc2 41# You can change the build type using
42# cmake -DCMAKE_BUILD_TYPE=DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL...
43if (NOT CMAKE_BUILD_TYPE)
44 set(CMAKE_BUILD_TYPE RELWITHDEBINFO)
45endif(NOT CMAKE_BUILD_TYPE)
46
b22a7396 47# ROOT dictionaries and maps
d50827fc 48include(CMakeALICE)
6db31708 49
f82bfa66 50# Checking first for DIM, DATE, AMORE and daqDA
51# in case ROOT Extra static library needs to be enabled
52
53# DATE
ec8c8ea6 54# date-config needs DIMDIR and ODIR set
f82bfa66 55if(DATE_CONFIG)
ec8c8ea6 56 if(DIMDIR AND ODIR)
57 find_package(DATE)
58 else()
59 message(FATAL_ERROR "DATE enabled but no DIMDIR and ODIR set. Please set DIMDIR and ODIR")
60 endif()
61endif()
f82bfa66 62
63# daqDA
64if(daqDA)
65 find_package(daqDA)
66endif(daqDA)
67
68# AMORE
69if(AMORE_CONFIG)
ec8c8ea6 70 if(ROOTSYS)
71 find_package(AMORE)
72 else()
73 message(FATAL_ERROR "AMORE enabled but no ROOTSYS defined")
74 endif()
f82bfa66 75endif(AMORE_CONFIG)
76
77# DA is enabled
78if(DA)
79 if(NOT DIMDIR AND NOT ODIR)
80 set(DA FALSE)
81 message(FATAL_ERROR "Das enabled but no DIMDIR and ODIR set. Please set DIMDIR to DIM installation and ODIR to platform (default linux)")
82 endif()
83
84 if(NOT DATE_FOUND)
85 set(DA FALSE)
86 message(FATAL_ERROR "DAs enabled but no DATE support found. Please point to your date installation using \"DATE_CONFIG\" variable")
87 endif()
88
89 if(NOT daqDA_FOUND)
90 set(DA FALSE)
91 message(FATAL_ERROR "DAs enabled but no daqDA support found. Please point to your daqDA installation using \"daqDA\" variable")
92 endif()
93
94 if(NOT AMORE_FOUND)
95 set(DA FALSE)
96 message(FATAL_ERROR "DAs enabled but no AMORE support found. Please point to your AMORE installation using \"AMORE_CONFIG\" variable")
97 endif()
98
99 # Enable static libraries
100 set(ALIROOT_STATIC TRUE)
101 message(STATUS "DAs enabled")
102endif(DA)
103
d50827fc 104# ROOT configuration mandatory
105if(ROOTSYS)
106 find_package(ROOT REQUIRED)
234c484d 107
108 # ROOT must be build with XML2 support
4d31eb1c 109 if(NOT ROOT_HASXML)
234c484d 110 message(FATAL_ERROR "ROOT was not build with xml2 support. Please reinstall or rebuild ROOT with xml2 support")
7d1be1d5 111 endif(NOT ROOT_HASXML)
d50827fc 112else()
113 message(FATAL_ERROR "ROOT installation not found!\nPlease point to the ROOT installation using -DROOTSYS=ROOT_INSTALL_DIR")
114endif(ROOTSYS)
6db31708 115
1dbe1076 116# If no Fortran, i.e on Windows
117# We need to specify ROOT fortran
118# (f95 comes before gfortran in default module)
119include(CheckLanguage)
120
121if(ROOT_FORTRAN)
122 message(STATUS "Using the Fortran compiler defined by ROOT configuration: ${ROOT_FORTRAN}")
123 set(CMAKE_Fortran_COMPILER ${ROOT_FORTRAN})
124else()
125 message(STATUS "Using default system Fortran compiler")
126endif(ROOT_FORTRAN)
127
128check_language(Fortran)
129if(CMAKE_Fortran_COMPILER)
130 enable_language(Fortran OPTIONAL)
131else()
f82bfa66 132 message(STATUS "No Fortran support. Disabling LHAPDF, PHYTIA6, MICROCERN, etc.")
1dbe1076 133endif()
134
135
56966a5e 136# DATE
f82bfa66 137if(DATE_CONFIG)
138 find_package(DATE)
139endif(DATE_CONFIG)
140
141# daqDA
142if(daqDA)
143 find_package(daqDA)
144endif(daqDA)
145
146# DA is enabled
147if(DA)
148 if(NOT DATE_FOUND)
149 set(DA FALSE)
150 message(FATAL_ERROR "DAs enabled but no DATE support found. Please point to your date installation using \"DATE_CONFIG\"")
151 endif()
152
153 if(NOT daqDA_FOUND)
154 set(DA FALSE)
155 message(FATAL_ERROR "DAs enabled but no daqDA support found. Please point to your daqDA installation using \"daqDA\" variable")
156 endif()
157
158 # Enable static libraries
159 set(ALIROOT_STATIC TRUE)
160 message(STATUS "DAs enabled")
161endif(DA)
56966a5e 162
b5576c4e 163# FastJet
164find_package(FASTJET)
165
3c77e1ef 166# ZEROMQ
167find_package(ZeroMQ)
168
d50827fc 169message(STATUS "CMake platform: ${CMAKE_SYSTEM}")
170message(STATUS "Build folder: ${AliRoot_BINARY_DIR}")
171message(STATUS "Source folder: ${AliRoot_SOURCE_DIR}")
172message(STATUS "Installation folder: ${CMAKE_INSTALL_PREFIX}")
173
4d31eb1c 174# General flags -> Should be moved into a configuration file
175set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
139cbc46 176set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE)
d50827fc 177
63697604 178# AliRoot base modules
17f9c1f8 179add_subdirectory(STEER)
17f9c1f8 180add_subdirectory(RAW)
63697604 181add_subdirectory(ANALYSIS)
182
183# Include Vc own cmake
184include(Vc/Vc.cmake)
185add_subdirectory(Vc)
186
187# AliRoot modules
188add_subdirectory(ACORDE)
189add_subdirectory(AD)
190add_subdirectory(BCM)
191add_subdirectory(CORRFW)
192add_subdirectory(EMCAL)
9d62600c 193add_subdirectory(EPOS)
63697604 194add_subdirectory(EVE)
195add_subdirectory(EVGEN)
196add_subdirectory(FASTSIM)
197add_subdirectory(FIT)
198add_subdirectory(FMD)
199add_subdirectory(HLT)
200add_subdirectory(HMPID)
17f9c1f8 201add_subdirectory(ITS)
63697604 202add_subdirectory(JETAN)
80afaccc 203add_subdirectory(MFT)
63697604 204add_subdirectory(MONITOR)
205add_subdirectory(MUON)
206add_subdirectory(OADB)
207add_subdirectory(PHOS)
208add_subdirectory(PMD)
a31c2f7d 209add_subdirectory(PYTHIA8)
63697604 210add_subdirectory(STARLIGHT)
211add_subdirectory(STAT)
212add_subdirectory(STRUCT)
97e8d2a8 213add_subdirectory(T0)
72017ac8 214add_subdirectory(TDPMjet)
e706c082 215add_subdirectory(TEvtGen)
16765dcc 216add_subdirectory(THerwig)
97e8d2a8 217add_subdirectory(TOF)
63697604 218add_subdirectory(TPC)
97e8d2a8 219add_subdirectory(TRD)
25f88fb9 220add_subdirectory(TRIGGER)
63697604 221add_subdirectory(TTherminator)
222add_subdirectory(VZERO)
223add_subdirectory(ZDC)
67018bf4 224
63697604 225# Fortran modules
1dbe1076 226if(CMAKE_Fortran_COMPILER)
c462af85 227 add_subdirectory(DIME)
228 add_subdirectory(DPMJET)
64609fcd 229 add_subdirectory(HERWIG)
63697604 230 add_subdirectory(HIJING)
116e4267 231 add_subdirectory(LHAPDF)
116e4267 232 add_subdirectory(MICROCERN)
63697604 233 add_subdirectory(PYTHIA6)
ba812042 234 add_subdirectory(TEPEMGEN)
27b08c46 235 add_subdirectory(THbtp)
a95d9137 236 add_subdirectory(THijing)
63697604 237 add_subdirectory(THydjet)
238 add_subdirectory(TPHIC)
239 add_subdirectory(TUHKMgen)
9b863d49 240 add_subdirectory(TAmpt)
1dbe1076 241endif(CMAKE_Fortran_COMPILER)
67018bf4 242
808c7763 243# PWG libraries
244add_subdirectory(PWG)
245
67018bf4 246# Enable SHUTTLE compilation
247# Check if DIMDIR and ODIR are set
248if(SHUTTLE)
249 if(DIMDIR AND ODIR AND ALIEN)
250 add_subdirectory(SHUTTLE)
251 else()
252 message(FATAL_ERROR "SHUTTLE enabled! Please specify DIMDIR, ODIR and ALIEN")
253 endif()
254endif(SHUTTLE)
034aa4b3 255
256add_subdirectory(ALIROOT)