/****************************************************************************

Copyright (c) 2010-2012 cocos2d-x.org

Copyright (c) 2013-2015 Chukong Technologies

Permission is hereby granted, free of charge, to any person obtaining a copy

of this software and associated documentation files (the "Software"), to deal

in the Software without restriction, including without limitation the rights

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

copies of the Software, and to permit persons to whom the Software is

furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in

all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

THE SOFTWARE.

****************************************************************************/

#ifndef __BASE_CC_PLATFORM_CONFIG_H__

#define __BASE_CC_PLATFORM_CONFIG_H__

/// @cond DO_NOT_SHOW

/**

  Config of cocos2d-x project, per target platform.

  THIS FILE MUST NOT INCLUDE ANY OTHER FILE

*/

//////////////////////////////////////////////////////////////////////////

// pre configure

//////////////////////////////////////////////////////////////////////////

// define supported target platform macro which CC uses.

#define CC_PLATFORM_UNKNOWN            0

#define CC_PLATFORM_IOS                1

#define CC_PLATFORM_ANDROID            2

#define CC_PLATFORM_WIN32              3

#define CC_PLATFORM_MARMALADE          4

#define CC_PLATFORM_LINUX              5

#define CC_PLATFORM_BADA               6

#define CC_PLATFORM_BLACKBERRY         7

#define CC_PLATFORM_MAC                8

#define CC_PLATFORM_NACL               9

#define CC_PLATFORM_EMSCRIPTEN        10

#define CC_PLATFORM_TIZEN             11

#define CC_PLATFORM_QT5               12

#define CC_PLATFORM_WINRT             13

// Determine target platform by compile environment macro.

#define CC_TARGET_PLATFORM             CC_PLATFORM_UNKNOWN

// mac

#if defined(CC_TARGET_OS_MAC) || defined(__APPLE__)

#undef  CC_TARGET_PLATFORM

#define CC_TARGET_PLATFORM         CC_PLATFORM_MAC

#endif

// iphone

#if defined(CC_TARGET_OS_IPHONE)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM         CC_PLATFORM_IOS

#endif

// android

#if defined(ANDROID)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM         CC_PLATFORM_ANDROID

#endif

// win32

#if defined(_WIN32) && defined(_WINDOWS)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM         CC_PLATFORM_WIN32

#endif

// linux

#if defined(LINUX) && !defined(__APPLE__)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM         CC_PLATFORM_LINUX

#endif

// marmalade

#if defined(MARMALADE)

#undef  CC_TARGET_PLATFORM

#define CC_TARGET_PLATFORM         CC_PLATFORM_MARMALADE

#endif

// bada

#if defined(SHP)

#undef  CC_TARGET_PLATFORM

#define CC_TARGET_PLATFORM         CC_PLATFORM_BADA

#endif

// qnx

#if defined(__QNX__)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM     CC_PLATFORM_BLACKBERRY

#endif

// native client

#if defined(__native_client__)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM     CC_PLATFORM_NACL

#endif

// Emscripten

#if defined(EMSCRIPTEN)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM     CC_PLATFORM_EMSCRIPTEN

#endif

// tizen

#if defined(TIZEN)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM     CC_PLATFORM_TIZEN

#endif

// qt5

#if defined(CC_TARGET_QT5)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM     CC_PLATFORM_QT5

#endif

// WinRT (Windows 8.1 Store/Phone App)

#if defined(WINRT)

    #undef  CC_TARGET_PLATFORM

    #define CC_TARGET_PLATFORM          CC_PLATFORM_WINRT

#endif

//////////////////////////////////////////////////////////////////////////

// post configure

//////////////////////////////////////////////////////////////////////////

// check user set platform

#if ! CC_TARGET_PLATFORM

    #error  "Cannot recognize the target platform; are you targeting an unsupported platform?"

#endif 

#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)

#ifndef __MINGW32__

#pragma warning (disable:4127) 

#endif 

#endif  // CC_PLATFORM_WIN32

/// @endcond

#endif  // __BASE_CC_PLATFORM_CONFIG_H__

cocos2d-x C++ 判断当前平台宏定义大全的更多相关文章

  1. Unity各平台宏定义

    属性 方法 UNITY_EDITOR #define directive for calling Unity Editor scripts from your game code. UNITY_EDI ...

  2. iOS 日常工作之常用宏定义大全

    转自:http://www.jianshu.com/p/213b3b96cafe 前言: 在工作中, 很多小伙伴都会在PCH文件定义一些常用的宏,但是又怕写这些简单的宏浪费时间,又有时候忘记怎么定义了 ...

  3. iOS日常工作之常用宏定义大全

    前言: 在工作中, 很多小伙伴都会在PCH文件定义一些常用的宏,但是又怕写这些简单的宏浪费时间,又有时候忘记怎么定义了怎么办?本人在工作中也是如此.所以在这里给大家分享一些常用的宏定义,喜欢的小伙伴可 ...

  4. iOS常用宏定义大全

    宏定义与常量的区别 宏:只是在预处理器里进行文本替换,不做任何类型检查,宏能定义代码,const不能,多个宏编译时间相对较长,影响开发效率,调试过慢,const只会编译一次,缩短编译时间. 所以在使用 ...

  5. object-c 常用判断null的宏定义,如果是null直接返回@""

    #define checkNull(__X__) (__X__) == [NSNull null] || (__X__) == nil ? @"" : [NSString stri ...

  6. Unity 平台宏定义

    官方文档: https://docs.unity3d.com/Manual/PlatformDependentCompilation.html

  7. Unity3D 多平台 预编译 宏定义

    平台定义 UNITY_EDITOR 编辑器调用. UNITY_STANDALONE_OSX 专门为Mac OS(包括Universal,PPC和Intelarchitectures)平台的定义. UN ...

  8. Unity3D 多平台_预编译相关宏定义

    http://www.cnblogs.com/zhaoqingqing/p/3510332.html API地址:http://docs.unity3d.com/Documentation/Manua ...

  9. C++通过宏定义判断操作系统及编译器

    INTRODUCTION: C++的编译环境千奇百怪,很多时候一些代码在某些编译环境下可用,一旦移到其他环境下,就会干脆Compile Error 对此,我们可以使用C++的宏定义来判断操作系统,从而 ...

随机推荐

  1. 【PPT大放送】MPD软件工作坊北京站圆满落幕 深圳站即将开幕!

    MPD工作坊深圳站体验票开启啦!文末有彩蛋哦! 7月14日至15日,由麦思博(msup)有限公司举办的第40届MPD软件工作坊在北京国家会议中心举行. 麦思博(msup)有限公司一直专注于软件研发中心 ...

  2. Entity Framework Core的坑:Skip/Take放在Select之前造成Include的实体全表查询

    今天将一个迁移至 ASP.NET Core 的项目放到一台 Linux 服务器上试运行.站点启动后,浏览器打开一个页面一直处于等待状态.接着奇怪的事情发生了,整个 Linux 服务器响应缓慢,ssh命 ...

  3. ubuntu系统中java -version所显示的版本与/etc/profile中配置的$JAVA_HOME的关系

    问题产生 ubuntu 18.04环境下,执行 java -version 发现与/etc/profile中的$JAVA_HOME所设置的java版本不同. 推测原因 最近用apt install 安 ...

  4. [No0000E7]C# 封装 与访问修饰符

    C# 支持的访问修饰符: Public Private Protected Internal Protected internal Public 访问修饰符 Public 访问修饰符允许一个类将其成员 ...

  5. 用CSS画基本图形

    用CSS画基本图形 1.正方形 代码如下: #square { width: 100px; height: 100px; background: red; } 2.长方形 代码如下:   #recta ...

  6. HTML响应状态码

    https://www.restapitutorial.com/httpstatuscodes.html

  7. linux fix the superblock by dumpe2fs fsck

    It seems that you have a bad superblock. To fix this: Firstly, boot into a live CD or USB Find out y ...

  8. Win10+Ubuntu18.04 UEFI启动模式SSD+HDD

    新手操作徒手安装Ubuntu,踩坑无数. 分享一篇好的经验:https://blog.csdn.net/xrinosvip/article/details/80428133(下附原博客) 踩坑大集合: ...

  9. [https][openssl] OpenSSL 公钥、私钥以及自签名证书

    转自:https://www.zybuluo.com/muyanfeixiang/note/392079 简介 公钥私钥用来互相加解密的一对密钥,一般是采用RSA非对称算法.公钥加密的私钥能解密,私钥 ...

  10. java 之程序中的http请求

    背景 java程序中有时需要我们发起http级别的请求,例如抓数据或者第三方对接时,一般分为两种:一种是只需我们发起请求,还有一种是我们不但要发起请求,还要拿到请求后的数据来进行下一步处理 实现 针对 ...