mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
15 lines
474 B
C
15 lines
474 B
C
#pragma once
|
|
|
|
#include "CCPlatformConfig.h"
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
#include "third_party/win32/curl/curl.h"
|
|
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
// nothing?
|
|
#include "third_party/ios/curl/curl.h"
|
|
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
#include "third_party/android/prebuilt/libcurl/include/curl/curl.h"
|
|
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
// nothing?
|
|
#include <curl/curl.h>
|
|
#endif
|
|
|