mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
iOS buildfix.
This commit is contained in:
parent
ad40ef6a52
commit
8c4db99435
@ -455,7 +455,7 @@ if(ANDROID)
|
||||
# No target
|
||||
elseif(IOS)
|
||||
set(nativeExtra ${nativeExtra}
|
||||
ios/main.m
|
||||
ios/main.mm
|
||||
ios/AppDelegate.m
|
||||
ios/AppDelegate.h
|
||||
ios/ViewController.mm
|
||||
|
@ -1,9 +1,16 @@
|
||||
// main.m boilerplate
|
||||
// main.mm boilerplate
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <string>
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
||||
std::string System_GetName()
|
||||
{
|
||||
// TODO: iPad/etc.?
|
||||
return "iOS:";
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
@autoreleasepool {
|
Loading…
Reference in New Issue
Block a user