diff options
author | Vincent Bénony | 2015-12-01 21:26:25 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 15:35:33 +0100 |
commit | 0708d9bd94600fcb12638f22618132685a894402 (patch) | |
tree | 3574035ad8f9937657423460c1f529afb99df234 /gui | |
parent | b58ec8f15ac1710af7353626bc488495bfb9e868 (diff) | |
download | scummvm-rg350-0708d9bd94600fcb12638f22618132685a894402.tar.gz scummvm-rg350-0708d9bd94600fcb12638f22618132685a894402.tar.bz2 scummvm-rg350-0708d9bd94600fcb12638f22618132685a894402.zip |
IOS: Forces the create_project tool to use the right browser file for iOS
Diffstat (limited to 'gui')
-rw-r--r-- | gui/module.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/module.mk b/gui/module.mk index e355212620..d4d74b5856 100644 --- a/gui/module.mk +++ b/gui/module.mk @@ -32,6 +32,13 @@ MODULE_OBJS := \ widgets/scrollbar.o \ widgets/tab.o +# Even if it seems redundant, please keep +# these directives in that order! +# This is needed by the "create_project" tool, for the OS X / iOS Xcode project +ifdef IPHONE +MODULE_OBJS += \ + browser.o +else ifdef MACOSX MODULE_OBJS += \ browser_osx.o @@ -39,6 +46,7 @@ else MODULE_OBJS += \ browser.o endif +endif ifdef ENABLE_EVENTRECORDER MODULE_OBJS += \ |