]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CMakeLists.txt
PAR: added example in CMakeLists.txt
[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
04484146 24message(STATUS "CMake platform: ${CMAKE_SYSTEM}")
25message(STATUS "Build folder: ${AliRoot_BINARY_DIR}")
26message(STATUS "Source folder: ${AliRoot_SOURCE_DIR}")
27message(STATUS "Installation folder: ${CMAKE_INSTALL_PREFIX}")
34ab4e08 28
29# You can change the build type using
30# cmake -DCMAKE_BUILD_TYPE=DEBUG | RELEASE | RELWITHDEBINFO | MINSIZEREL ...
31if (NOT CMAKE_BUILD_TYPE)
32 set(CMAKE_BUILD_TYPE RELWITHDEBINFO)
33endif(NOT CMAKE_BUILD_TYPE)
34message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
35
04484146 36
37if(CMAKE_INSTALL_PREFIX STREQUAL "${AliRoot_SOURCE_DIR}")
38 message(FATAL_ERROR "Please choose a different installation point than the source tree!")
39endif()
40
d50827fc 41# Path to additonal modules
c2f9135f 42set(CMAKE_MODULE_PATH "${AliRoot_SOURCE_DIR}/cmake")
43
44# AliRoot version extracted from Git repository
45# Sets 4 git variables
46# - GIT_REFSPEC - complete name of the current reference
47# - ALIROOT_BRANCH - name of the branch or tag extracted from the current reference
48# - GIT_SHA1 - current hash in the long format
49# - GIT_SHORT_SHA1 - current hash in the short format
50# - ALIROOT_VERSION = ALIROOT_BRANCH
51# - ALIROOT_REVISION = GIT_SHORT_SHA1
52include(CheckGitVersion)
b22a7396 53
54# - CLANG_MAJOR.CLANG_MINOR or
55# - GCC_MAJOR.GCC_MINOR.GCC_PATCH
56include(CheckCompiler)
57
b24da1d3 58# Utility to generate PARfiles
59include(cmake/GenParFile.cmake)
60
34ab4e08 61# Shared library suffix
0e5d2ccd 62if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows)
34ab4e08 63 set(CMAKE_SHARED_LIBRARY_SUFFIX .so)
0e5d2ccd 64endif (NOT CMAKE_SYSTEM_NAME STREQUAL Windows)
c4faffc2 65
f82bfa66 66# Checking first for DIM, DATE, AMORE and daqDA
67# in case ROOT Extra static library needs to be enabled
68
69# DATE
ec8c8ea6 70# date-config needs DIMDIR and ODIR set
f82bfa66 71if(DATE_CONFIG)
ec8c8ea6 72 if(DIMDIR AND ODIR)
73 find_package(DATE)
74 else()
75 message(FATAL_ERROR "DATE enabled but no DIMDIR and ODIR set. Please set DIMDIR and ODIR")
76 endif()
77endif()
f82bfa66 78
79# daqDA
80if(daqDA)
81 find_package(daqDA)
82endif(daqDA)
83
84# AMORE
85if(AMORE_CONFIG)
ec8c8ea6 86 if(ROOTSYS)
87 find_package(AMORE)
88 else()
89 message(FATAL_ERROR "AMORE enabled but no ROOTSYS defined")
90 endif()
f82bfa66 91endif(AMORE_CONFIG)
92
168930f9 93# id DARPM we enable DA if it is not set
94if(DARPM)
95 if(NOT DA)
96 set(DA ON)
97 endif(NOT DA)
98endif(DARPM)
99
f82bfa66 100# DA is enabled
101if(DA)
102 if(NOT DIMDIR AND NOT ODIR)
103 set(DA FALSE)
104 message(FATAL_ERROR "Das enabled but no DIMDIR and ODIR set. Please set DIMDIR to DIM installation and ODIR to platform (default linux)")
105 endif()
106
107 if(NOT DATE_FOUND)
108 set(DA FALSE)
109 message(FATAL_ERROR "DAs enabled but no DATE support found. Please point to your date installation using \"DATE_CONFIG\" variable")
110 endif()
111
112 if(NOT daqDA_FOUND)
113 set(DA FALSE)
114 message(FATAL_ERROR "DAs enabled but no daqDA support found. Please point to your daqDA installation using \"daqDA\" variable")
115 endif()
116
117 if(NOT AMORE_FOUND)
118 set(DA FALSE)
119 message(FATAL_ERROR "DAs enabled but no AMORE support found. Please point to your AMORE installation using \"AMORE_CONFIG\" variable")
120 endif()
121
122 # Enable static libraries
123 set(ALIROOT_STATIC TRUE)
124 message(STATUS "DAs enabled")
125endif(DA)
126
fae85bcc 127# MDC rpm creation enables the static build
128if(MDCRPM)
129 set(ALIROOT_STATIC TRUE)
130 message(STATUS "AliMDC RPM enabled. AliRoot static build enabled")
131endif(MDCRPM)
132
7c325e0b 133# ROOT configuration mandatory
134# FindRoot has to be after the enabling of DA due to libRootExtra
135# Do not put it above DA
136if(ROOTSYS)
137 find_package(ROOT REQUIRED)
138
139 # ROOT must be build with XML2 support
140 if(NOT ROOT_HASXML)
141 message(FATAL_ERROR "ROOT was not build with xml2 support. Please reinstall or rebuild ROOT with xml2 support")
142 endif(NOT ROOT_HASXML)
143else()
144 message(FATAL_ERROR "ROOT installation not found!\nPlease point to the ROOT installation using -DROOTSYS=ROOT_INSTALL_DIR")
145endif(ROOTSYS)
146
147# ROOT dictionaries and maps
148include(CMakeALICE)
149
150
1dbe1076 151# If no Fortran, i.e on Windows
152# We need to specify ROOT fortran
153# (f95 comes before gfortran in default module)
154include(CheckLanguage)
155
156if(ROOT_FORTRAN)
157 message(STATUS "Using the Fortran compiler defined by ROOT configuration: ${ROOT_FORTRAN}")
158 set(CMAKE_Fortran_COMPILER ${ROOT_FORTRAN})
159else()
160 message(STATUS "Using default system Fortran compiler")
161endif(ROOT_FORTRAN)
162
163check_language(Fortran)
164if(CMAKE_Fortran_COMPILER)
165 enable_language(Fortran OPTIONAL)
166else()
f82bfa66 167 message(STATUS "No Fortran support. Disabling LHAPDF, PHYTIA6, MICROCERN, etc.")
1dbe1076 168endif()
169
a2a27b4c 170# Optional: Doxygen for reference doc generation
171find_package(Doxygen)
172if(DOXYGEN_FOUND AND DOXYGEN_DOT_FOUND)
173 message(STATUS "Doxygen ${DOXYGEN_VERSION} and Graphviz found: ${DOXYGEN_EXECUTABLE}, ${DOXYGEN_DOT_EXECUTABLE}")
174 set(CAN_GENERATE_DOC TRUE)
175else()
176 message(STATUS "Doxygen and Graphviz not found. Disabling support for documentation generation")
177endif(DOXYGEN_FOUND AND DOXYGEN_DOT_FOUND)
178
b5576c4e 179# FastJet
180find_package(FASTJET)
181
3c77e1ef 182# ZEROMQ
183find_package(ZeroMQ)
184
fb0ae393 185# Generating the AliRoot-config.cmake file
186configure_file(${PROJECT_SOURCE_DIR}/cmake/AliRoot-config.cmake.in ${CMAKE_BINARY_DIR}/version/AliRoot-config.cmake @ONLY)
7187fc7f 187install(FILES ${PROJECT_BINARY_DIR}/version/AliRoot-config.cmake DESTINATION etc)
fb0ae393 188
4d31eb1c 189# General flags -> Should be moved into a configuration file
190set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
139cbc46 191set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE)
d50827fc 192
9596d7e9 193# List of modules for which PARfiles are enabled -- use the cache as global scope and clean it
194set(ALIPARFILES "" CACHE INTERNAL "ALIPARFILES" FORCE)
195
63697604 196# AliRoot base modules
17f9c1f8 197add_subdirectory(STEER)
17f9c1f8 198add_subdirectory(RAW)
63697604 199add_subdirectory(ANALYSIS)
200
201# Include Vc own cmake
202include(Vc/Vc.cmake)
203add_subdirectory(Vc)
204
9815baac 205# AliRoot common macros
206add_subdirectory(macros)
207
63697604 208# AliRoot modules
209add_subdirectory(ACORDE)
210add_subdirectory(AD)
211add_subdirectory(BCM)
63697604 212add_subdirectory(EMCAL)
9d62600c 213add_subdirectory(EPOS)
63697604 214add_subdirectory(EVE)
215add_subdirectory(EVGEN)
216add_subdirectory(FASTSIM)
217add_subdirectory(FIT)
218add_subdirectory(FMD)
219add_subdirectory(HLT)
220add_subdirectory(HMPID)
17f9c1f8 221add_subdirectory(ITS)
80afaccc 222add_subdirectory(MFT)
63697604 223add_subdirectory(MONITOR)
224add_subdirectory(MUON)
63697604 225add_subdirectory(PHOS)
226add_subdirectory(PMD)
a31c2f7d 227add_subdirectory(PYTHIA8)
63697604 228add_subdirectory(STARLIGHT)
229add_subdirectory(STAT)
230add_subdirectory(STRUCT)
97e8d2a8 231add_subdirectory(T0)
72017ac8 232add_subdirectory(TDPMjet)
e706c082 233add_subdirectory(TEvtGen)
16765dcc 234add_subdirectory(THerwig)
97e8d2a8 235add_subdirectory(TOF)
63697604 236add_subdirectory(TPC)
97e8d2a8 237add_subdirectory(TRD)
25f88fb9 238add_subdirectory(TRIGGER)
63697604 239add_subdirectory(TTherminator)
240add_subdirectory(VZERO)
241add_subdirectory(ZDC)
a2a27b4c 242add_subdirectory(doxygen)
67018bf4 243
63697604 244# Fortran modules
1dbe1076 245if(CMAKE_Fortran_COMPILER)
c462af85 246 add_subdirectory(DIME)
247 add_subdirectory(DPMJET)
64609fcd 248 add_subdirectory(HERWIG)
63697604 249 add_subdirectory(HIJING)
116e4267 250 add_subdirectory(LHAPDF)
116e4267 251 add_subdirectory(MICROCERN)
63697604 252 add_subdirectory(PYTHIA6)
ba812042 253 add_subdirectory(TEPEMGEN)
27b08c46 254 add_subdirectory(THbtp)
a95d9137 255 add_subdirectory(THijing)
63697604 256 add_subdirectory(THydjet)
257 add_subdirectory(TPHIC)
258 add_subdirectory(TUHKMgen)
9b863d49 259 add_subdirectory(TAmpt)
1dbe1076 260endif(CMAKE_Fortran_COMPILER)
67018bf4 261
7c29eb0f 262add_subdirectory(data)
71f72706 263add_subdirectory(GRP)
807153f0 264add_subdirectory(OCDB)
265add_subdirectory(QAref)
808c7763 266
67018bf4 267# Enable SHUTTLE compilation
268# Check if DIMDIR and ODIR are set
269if(SHUTTLE)
101cc341 270 if(ROOT_HASALIEN STREQUAL "no")
271 message(FATAL_ERROR "Shuttle needs ROOT build with AliEn support. Please build ROOT with AliEn support. Do not forget to set ALIEN to your AliEn installation")
272 endif()
273
67018bf4 274 if(DIMDIR AND ODIR AND ALIEN)
275 add_subdirectory(SHUTTLE)
276 else()
277 message(FATAL_ERROR "SHUTTLE enabled! Please specify DIMDIR, ODIR and ALIEN")
278 endif()
279endif(SHUTTLE)
034aa4b3 280
34ab4e08 281add_subdirectory(ALIROOT)
9596d7e9 282
283# List modules with PARfiles
284string(REPLACE ";" " " ALIPARFILES_FLAT "${ALIPARFILES}")
285message(STATUS "PARfile target enabled for the following modules: ${ALIPARFILES_FLAT}")