geode/loader/include/Geode/cocos/platform/IncludeJpegLib.h
HJfod 662a9e99f5 big cocos reworks
- remove cocos2dx folder
 - change all include paths in cocos2d to be relative
2022-10-17 15:46:36 +03:00

15 lines
458 B
C

#pragma once
#include "CCPlatformConfig.h"
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
#include "third_party/win32/libjpeg/jpeglib.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
// nothing?
#include <jpeglib.h>
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "third_party/android/prebuilt/libjpeg/include/jpeglib.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
// nothing?
#include <jpeglib.h>
#endif