Revision bd5b7011ea1cbf2619246385c7e5e5aac372d550 authored by Jakob Blomer on 25 March 2024, 16:26:00 UTC, committed by Jakob Blomer on 08 April 2024, 13:56:32 UTC
1 parent e27553d
Raw File
CMakeLists.txt
# Copyright (C) 1995-2019, Rene Brun and Fons Rademakers.
# All rights reserved.
#
# For the licensing terms see $ROOTSYS/LICENSE.
# For the list of contributors see $ROOTSYS/README/CREDITS.

############################################################################
# CMakeLists.txt file for building ROOT core/multiproc package
############################################################################

if(WIN32)
  return()
endif()

ROOT_STANDARD_LIBRARY_PACKAGE(MultiProc STAGE1
  HEADERS
    MPCode.h
    MPSendRecv.h
    PoolUtils.h
    TMPClient.h
    TMPWorker.h
    TMPWorkerExecutor.h
    TProcPool.h
    ROOT/TProcessExecutor.hxx
  SOURCES
    src/MPSendRecv.cxx
    src/TMPClient.cxx
    src/TMPWorker.cxx
    src/TProcessExecutor.cxx
  LIBRARIES
    ${CMAKE_DL_LIBS}
  DEPENDENCIES
    Core
    Net
)
back to top