X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MONITOR%2FCMakeLists.txt;h=35453cd98b215638e7731e2c51c8b71fce19dfd9;hb=21689d7afd54d7ba8a9bfecda3ffabf22494bd88;hp=ad00c3c3a9a6904d1b73b87ed8bee18e301777d3;hpb=28dfdfed135bc96645162377b1e37591568f890d;p=u%2Fmrichter%2FAliRoot.git diff --git a/MONITOR/CMakeLists.txt b/MONITOR/CMakeLists.txt index ad00c3c3a9a..35453cd98b2 100644 --- a/MONITOR/CMakeLists.txt +++ b/MONITOR/CMakeLists.txt @@ -1,24 +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 - CMakebinalitestproc.pkg - CMakebinderoot.pkg - CMakebinmonitorCheck.pkg - CMakebinmonitorGDC.pkg - CMakelibMONITOR.pkg -) +# MONITOR executables +add_subdirectory(alitestproc) +add_subdirectory(deroot) +add_subdirectory(monitorCheck) +add_subdirectory(monitorGDC) if(ZEROMQ_FOUND) -set(PACKAGES "${PACKAGES}" - CMakelibMONITORzmq.pkg - CMakebinalieventserver.pkg -) -ENDIF(ZEROMQ_FOUND) + add_subdirectory(MONITORzmq) + add_subdirectory(alistoragemanager) + add_subdirectory(alionlinereco) +endif(ZEROMQ_FOUND) -ALICE_BuildModule() + +message(STATUS "MONITOR enabled")