我正在玩 cocos2d-x 试图构建示例,但我不断收到错误"Cannot recognize the target platform; are you targeting an unsupported platform?"
消息,下面是 iPhone 目标的 ifdef 语句。但它似乎并没有拿起 iOS 模拟器。
#if defined(CC_TARGET_OS_IPHONE)
#undef CC_TARGET_PLATFORM
#define CC_TARGET_PLATFORM CC_PLATFORM_IOS
#endif
我需要改变什么才能让它在 iOS 模拟器上工作吗?