mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
8f5af6172a
We've chosen to drop our default dependence on xmlrpc. Thus we disable the corresponding CTest submission method and remove the sources for building xmlrpc locally. Users can re-enable the method by setting the CTEST_USE_XMLRPC option to use a system-installed xmlrpc library.
28 lines
872 B
C
28 lines
872 B
C
/*=========================================================================
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
Module: $RCSfile$
|
|
Language: C++
|
|
Date: $Date$
|
|
Version: $Revision$
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
=========================================================================*/
|
|
#ifndef __cm_xmlrpc_h
|
|
#define __cm_xmlrpc_h
|
|
|
|
/* Use the xmlrpc library configured for CMake. */
|
|
#include "cmThirdParty.h"
|
|
#ifdef CTEST_USE_XMLRPC
|
|
# include <xmlrpc.h>
|
|
# include <xmlrpc_client.h>
|
|
#endif
|
|
|
|
#endif
|