mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-13 14:43:29 +01:00
94 lines
3.4 KiB
C
94 lines
3.4 KiB
C
// Copyright 2015, Google Inc.
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are
|
|
// met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above
|
|
// copyright notice, this list of conditions and the following disclaimer
|
|
// in the documentation and/or other materials provided with the
|
|
// distribution.
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
// contributors may be used to endorse or promote products derived from
|
|
// this software without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// The Google C++ Testing Framework (Google Test)
|
|
//
|
|
// This header file defines the GTEST_OS_* macro.
|
|
// It is separate from gtest-port.h so that custom/gtest-port.h can include it.
|
|
|
|
#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|
|
#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|
|
|
|
// Determines the platform on which Google Test is compiled.
|
|
#ifdef __CYGWIN__
|
|
# define GTEST_OS_CYGWIN 1
|
|
#elif defined __SYMBIAN32__
|
|
# define GTEST_OS_SYMBIAN 1
|
|
#elif defined _WIN32
|
|
# define GTEST_OS_WINDOWS 1
|
|
# ifdef _WIN32_WCE
|
|
# define GTEST_OS_WINDOWS_MOBILE 1
|
|
# elif defined(__MINGW__) || defined(__MINGW32__)
|
|
# define GTEST_OS_WINDOWS_MINGW 1
|
|
# elif defined(WINAPI_FAMILY)
|
|
# include <winapifamily.h>
|
|
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
|
# define GTEST_OS_WINDOWS_DESKTOP 1
|
|
# elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP)
|
|
# define GTEST_OS_WINDOWS_PHONE 1
|
|
# elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
|
# define GTEST_OS_WINDOWS_RT 1
|
|
# else
|
|
// WINAPI_FAMILY defined but no known partition matched.
|
|
// Default to desktop.
|
|
# define GTEST_OS_WINDOWS_DESKTOP 1
|
|
# endif
|
|
# else
|
|
# define GTEST_OS_WINDOWS_DESKTOP 1
|
|
# endif // _WIN32_WCE
|
|
#elif defined __APPLE__
|
|
# define GTEST_OS_MAC 1
|
|
# if TARGET_OS_IPHONE
|
|
# define GTEST_OS_IOS 1
|
|
# endif
|
|
#elif defined __FreeBSD__
|
|
# define GTEST_OS_FREEBSD 1
|
|
#elif defined __linux__
|
|
# define GTEST_OS_LINUX 1
|
|
# if defined __ANDROID__
|
|
# define GTEST_OS_LINUX_ANDROID 1
|
|
# endif
|
|
#elif defined __MVS__
|
|
# define GTEST_OS_ZOS 1
|
|
#elif defined(__sun) && defined(__SVR4)
|
|
# define GTEST_OS_SOLARIS 1
|
|
#elif defined(_AIX)
|
|
# define GTEST_OS_AIX 1
|
|
#elif defined(__hpux)
|
|
# define GTEST_OS_HPUX 1
|
|
#elif defined __native_client__
|
|
# define GTEST_OS_NACL 1
|
|
#elif defined __OpenBSD__
|
|
# define GTEST_OS_OPENBSD 1
|
|
#elif defined __QNX__
|
|
# define GTEST_OS_QNX 1
|
|
#endif // __CYGWIN__
|
|
|
|
#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|