2010-07-28 10:26:06 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-09-06 18:35:24 +08:00
|
|
|
// pre configure
|
2010-11-17 14:32:44 +08:00
|
|
|
#ifdef _TRANZDA_VM_ // under uphone
|
2010-07-28 10:26:06 +08:00
|
|
|
#define CCX_PLATFORM_UPHONE
|
2010-10-08 17:53:04 +08:00
|
|
|
#elif defined (WIN32) && defined (_WINDOWS) // under win32pc
|
|
|
|
#define CCX_PLATFORM_WIN32
|
2010-11-23 18:02:42 +08:00
|
|
|
#elif defined (ANDROID)
|
2010-11-03 10:59:07 +08:00
|
|
|
#define CCX_PLATFORM_ANDROID
|
2010-11-18 14:50:28 +08:00
|
|
|
#elif defined (TARGET_OS_IPHONE) || defined(TARGET_IPHONE_SIMULATOR)
|
2010-11-12 17:18:54 +08:00
|
|
|
#define CCX_PLATFORM_IPHONE
|
2010-12-23 16:16:11 +08:00
|
|
|
#elif defined (TARGET_OS_MAC)
|
|
|
|
#define CCX_PLATFORM_MAC
|
2010-09-06 18:35:24 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// user configure
|
|
|
|
|
2010-10-08 17:53:04 +08:00
|
|
|
// use these macros to set compiling environment if needed
|
2010-09-06 18:35:24 +08:00
|
|
|
|
2010-11-23 18:20:46 +08:00
|
|
|
// #define CCX_UNDER_UPHONE
|
|
|
|
// #define CCX_UNDER_WIN32
|
|
|
|
// #define CCX_UNDER_ANDROID
|
|
|
|
// #define CCX_UNDER_IPHONE
|
2010-09-06 18:35:24 +08:00
|
|
|
|
|
|
|
// post configure
|
|
|
|
|
2010-10-08 17:53:04 +08:00
|
|
|
// check user set platform
|
2010-11-17 14:32:44 +08:00
|
|
|
#if defined(CCX_UNDER_UPHONE) || defined(CCX_UNDER_WIN32) || defined(CCX_UNDER_ANDROID) || defined(CCX_UNDER_IPHONE)
|
2010-10-08 17:53:04 +08:00
|
|
|
#undef CCX_PLATFORM_UPHONE
|
|
|
|
#undef CCX_PLATFORM_WIN32
|
2010-11-17 14:32:44 +08:00
|
|
|
#undef CCX_PLATFORM_ANDROID
|
|
|
|
#undef CCX_PLATFORM_IPHONE
|
2010-10-08 17:53:04 +08:00
|
|
|
|
|
|
|
#if defined(CCX_UNDER_UPHONE)
|
|
|
|
#define CCX_PLATFORM_UPHONE // under uphone
|
|
|
|
#elif defined(CCX_UNDER_WIN32)
|
|
|
|
#define CCX_PLATFORM_WIN32
|
2010-11-17 14:32:44 +08:00
|
|
|
#elif defined(CCX_UNDER_ANDROID)
|
|
|
|
#define CCX_PLATFORM_ANDROID
|
|
|
|
#elif defined(CCX_UNDER_IPHONE)
|
|
|
|
#define CCX_PLATFORM_IPHONE
|
2010-10-08 17:53:04 +08:00
|
|
|
#endif
|
2010-12-23 16:16:11 +08:00
|
|
|
#endif
|
2010-10-08 17:53:04 +08:00
|
|
|
|
2010-12-23 16:16:11 +08:00
|
|
|
// distinguish mobile platforms and pc platforms
|
|
|
|
#if defined(CCX_PLATFORM_UPHONE) || defined(CCX_PLATFORM_WIN32) || defined(CCX_PLATFORM_ANDROID) || defined(CCX_PLATFORM_IPHONE)
|
|
|
|
#define CCX_PLATFORM_MOBILE
|
|
|
|
#elif defined (CCX_PLATFORM_MAC)
|
|
|
|
#define CCX_PLATFORM_PC
|
2010-10-08 17:53:04 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// check compiling platform
|
2010-11-12 17:18:54 +08:00
|
|
|
#if ! defined(CCX_PLATFORM_UPHONE) && ! defined(CCX_PLATFORM_WIN32) && ! defined(CCX_PLATFORM_ANDROID) && ! defined(CCX_PLATFORM_IPHONE)
|
2010-10-08 17:53:04 +08:00
|
|
|
#error "no platform macro defined!"
|
2010-07-28 10:26:06 +08:00
|
|
|
#endif
|