2016-11-09 14:12:29 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
|
2012-05-02 12:46:10 +00:00
|
|
|
#ifndef @KWSYS_NAMESPACE@_Configure_hxx
|
|
|
|
#define @KWSYS_NAMESPACE@_Configure_hxx
|
|
|
|
|
|
|
|
/* Include C configuration. */
|
|
|
|
#include <@KWSYS_NAMESPACE@/Configure.h>
|
|
|
|
|
2013-11-21 17:47:57 +00:00
|
|
|
/* Whether wstring is available. */
|
|
|
|
#define @KWSYS_NAMESPACE@_STL_HAS_WSTRING @KWSYS_STL_HAS_WSTRING@
|
2016-07-19 12:20:26 +00:00
|
|
|
/* Whether <ext/stdio_filebuf.h> is available. */
|
2016-11-09 14:12:29 +00:00
|
|
|
#define @KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H \
|
|
|
|
@KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H@
|
2013-11-21 17:47:57 +00:00
|
|
|
|
2012-05-02 12:46:10 +00:00
|
|
|
/* If building a C++ file in kwsys itself, give the source file
|
|
|
|
access to the macros without a configured namespace. */
|
|
|
|
#if defined(KWSYS_NAMESPACE)
|
2016-11-09 14:12:29 +00:00
|
|
|
#if !@KWSYS_NAMESPACE@_NAME_IS_KWSYS
|
|
|
|
#define kwsys @KWSYS_NAMESPACE@
|
|
|
|
#endif
|
|
|
|
#define KWSYS_NAME_IS_KWSYS @KWSYS_NAMESPACE@_NAME_IS_KWSYS
|
|
|
|
#define KWSYS_STL_HAS_WSTRING @KWSYS_NAMESPACE@_STL_HAS_WSTRING
|
|
|
|
#define KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H \
|
|
|
|
@KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H
|
2012-05-02 12:46:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|