(iOS) Precompiled header gets turned into regular header - moved

to compat/ and included only once
This commit is contained in:
twinaphex 2013-07-05 03:34:34 +02:00
parent 97e2130818
commit 0181d72cdc
6 changed files with 28 additions and 8 deletions

View File

@ -1,5 +1,6 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2013 - Jason Fetters
* Copyright (C) 2011-2013 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
@ -13,10 +14,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
//
// Prefix header for all source files of the 'RetroArch' target in the 'RetroArch' project
//
#ifdef IOS
#import <Availability.h>
#ifndef __IPHONE_5_0
@ -30,3 +30,4 @@
#import <objc/runtime.h>
#endif
#endif

View File

@ -440,8 +440,8 @@
buildSettings = {
CLANG_CXX_LIBRARY = "libstdc++";
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "RetroArch/RetroArch-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
INFOPLIST_FILE = "RetroArch/RetroArch-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
LD_NO_PIE = YES;
@ -487,8 +487,8 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "RetroArch/RetroArch-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
INFOPLIST_FILE = "RetroArch/RetroArch-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
LD_NO_PIE = YES;

View File

@ -13,6 +13,11 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _RA_MODULE_INFO_H
#define _RA_MODULE_INFO_H
#include "compat/apple_compat.h"
#include "conf/config_file.h"
#include "core_info.h"
@ -34,3 +39,5 @@
- (NSString*)configPath;
@end
#endif

View File

@ -1,5 +1,6 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2013 - Jason Fetters
* Copyright (C) 2011-2013 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
@ -13,6 +14,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __RARCH_APPLE_H
#define __RARCH_APPLE_H
#import "RAModuleInfo.h"
@interface RetroArch_iOS : UINavigationController<UIApplicationDelegate, UINavigationControllerDelegate>
@ -34,3 +38,5 @@ extern void ios_display_alert(NSString* message, NSString* title);
extern void ios_clear_config_hack();
extern bool path_make_and_check_directory(const char* path, mode_t mode, int amode);
extern NSString* ios_get_value_from_config(config_file_t* config, NSString* name, NSString* defaultValue);
#endif

View File

@ -1,5 +1,6 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2013 - Jason Fetters
* Copyright (C) 2011-2013 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
@ -13,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __IOS_RARCH_WRAPPER_H__
#define __IOS_RARCH_WRAPPER_H__
#ifndef __APPLE_RARCH_WRAPPER_H__
#define __APPLE_RARCH_WRAPPER_H__
// The result needs to be free()'d
char* ios_get_rarch_system_directory();

View File

@ -13,6 +13,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _RARCH_APPLE_VIEWS_H
#define _RARCH_APPLE_VIEWS_H
#import "RAModuleInfo.h"
// RAGameView.m
@ -72,3 +75,5 @@
// settings.m
@interface RASystemSettingsList : RASettingsSubList<UIAlertViewDelegate>
@end
#endif