X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=MONITOR%2FCMakeLists.txt;h=35453cd98b215638e7731e2c51c8b71fce19dfd9;hp=11438d864d502f37e198878443cd612a99d27687;hb=b929d7c3d0b348a948d947a93462bbaa0963f6d1;hpb=f78c506b5a881040c01a0e6b568553abf59e5df5 diff --git a/MONITOR/CMakeLists.txt b/MONITOR/CMakeLists.txt index 11438d864d5..35453cd98b2 100644 --- a/MONITOR/CMakeLists.txt +++ b/MONITOR/CMakeLists.txt @@ -1,30 +1,32 @@ -# AliRoot Build System CMakeLists for MONITOR -# -# Author: Johny Jose m(johny.jose@cern.ch) -# Port of previous Makefile build to cmake +# ************************************************************************** +# * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. * +# * * +# * Author: The ALICE Off-line Project. * +# * Contributors are mentioned in the code where appropriate. * +# * * +# * Permission to use, copy, modify and distribute this software and its * +# * documentation strictly for non-commercial purposes is hereby granted * +# * without fee, provided that the above copyright notice appears in all * +# * copies and that both the copyright notice and this permission notice * +# * appear in the supporting documentation. The authors make no claims * +# * about the suitability of this software for any purpose. It is * +# * provided "as is" without express or implied warranty. * +# ************************************************************************** -cmake_minimum_required(VERSION 2.8.4 FATAL_ERROR) +# MONITOR libraries +add_subdirectory(MONITOR) -# This will only build MONITOR only if ZeroMQ is found - -set (PACKAGES - CMakelibMONITOR.pkg - alitestproc/CMakebinalitestproc.pkg - deroot/CMakebinderoot.pkg - monitorCheck/CMakebinmonitorCheck.pkg - monitorGDC/CMakebinmonitorGDC.pkg -) +# MONITOR executables +add_subdirectory(alitestproc) +add_subdirectory(deroot) +add_subdirectory(monitorCheck) +add_subdirectory(monitorGDC) if(ZEROMQ_FOUND) -set(PACKAGES "${PACKAGES}" - CMakelibMONITORzmq.pkg - alistoragemanager/CMakebinalistorage.pkg - alistoragemanager/CMakebinalistorageadmin.pkg - alistoragemanager/CMakebinalifakedisplay.pkg - alistoragemanager/CMakebinalistorageminimalexample.pkg - alistoragemanager/CMakebinalistoragegetpoints.pkg - alieventserver/CMakebinalieventserver.pkg -) -ENDIF(ZEROMQ_FOUND) + add_subdirectory(MONITORzmq) + add_subdirectory(alistoragemanager) + add_subdirectory(alionlinereco) +endif(ZEROMQ_FOUND) + -ALICE_BuildModule() +message(STATUS "MONITOR enabled")