You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmsys/Configure.hxx" // IWYU pragma: export
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4786)
|
|
#pragma warning(disable : 4503)
|
|
#endif
|
|
|
|
#ifdef __ICL
|
|
#pragma warning(disable : 985)
|
|
#pragma warning(disable : 1572) /* floating-point equality test */
|
|
#endif
|
|
|
|
#if defined(__LCC__) && defined(__EDG__) && (__LCC__ == 123)
|
|
#pragma diag_suppress 2910 /* excess -Wunused-function in 1.23.x */
|
|
#endif
|
|
|
|
#cmakedefine HAVE_ENVIRON_NOT_REQUIRE_PROTOTYPE
|
|
#cmakedefine HAVE_UNSETENV
|
|
#cmakedefine CMake_USE_MACH_PARSER
|
|
#cmakedefine CMake_USE_XCOFF_PARSER
|
|
#cmakedefine CMAKE_USE_WMAKE
|
|
#define CMake_DEFAULT_RECURSION_LIMIT @CMake_DEFAULT_RECURSION_LIMIT@
|
|
#define CMAKE_BIN_DIR "/@CMAKE_BIN_DIR@"
|
|
#define CMAKE_DATA_DIR "/@CMAKE_DATA_DIR@"
|
|
#define CMAKE_DOC_DIR "/@CMAKE_DOC_DIR@"
|
|
|
|
#define CM_FALLTHROUGH cmsys_FALLTHROUGH
|
|
|
|
#if defined(_WIN32) && !defined(NOMINMAX)
|
|
# define NOMINMAX
|
|
#endif
|
|
|
|
#cmakedefine CURL_CA_BUNDLE "@CURL_CA_BUNDLE@"
|
|
#cmakedefine CURL_CA_PATH "@CURL_CA_PATH@"
|
|
|
|
#cmakedefine01 CMake_STAT_HAS_ST_MTIM
|
|
#cmakedefine01 CMake_STAT_HAS_ST_MTIMESPEC
|
|
|
|
#cmakedefine KWSYS_ENCODING_DEFAULT_CODEPAGE @KWSYS_ENCODING_DEFAULT_CODEPAGE@
|