mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
27 lines
588 B
Objective-C
27 lines
588 B
Objective-C
#ifdef IOS
|
|
#include <Availability.h>
|
|
#else
|
|
#include <AvailabilityMacros.h>
|
|
#endif
|
|
|
|
#ifndef __IPHONE_OS_VERSION_MAX_ALLOWED
|
|
#define __IPHONE_OS_VERSION_MAX_ALLOWED 00000
|
|
#endif
|
|
|
|
#include "../gfx/drivers_context/apple_cocoa_gl.m"
|
|
#include "../apple/common/apple_cocoa_common.m"
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#include "../apple/iOS/platform.m"
|
|
#include "../apple/iOS/menu.m"
|
|
#include "../apple/iOS/browser.m"
|
|
#include "../ui/drivers/ui_cocoatouch.m"
|
|
#else
|
|
#include "../apple/OSX/platform.m"
|
|
#include "../apple/OSX/settings.m"
|
|
#endif
|
|
|
|
#ifdef HAVE_MFI
|
|
#include "../input/drivers_hid/mfi_hid.m"
|
|
#endif
|