Cure some bit rot and allow building the standaline memcard manager on OS X.

The app appears broken though.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5650 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2010-06-11 15:18:36 +00:00
parent e7f7eff2b6
commit d937b73d9c
4 changed files with 295 additions and 294 deletions

View File

@ -1,27 +1,31 @@
# -*- python -*-
Import('env')
import sys
wxenv = env.Clone()
# -*- python -*-
Import('env')
import sys
wxenv = env.Clone()
files = [
]
libs = [
'common',
]
if wxenv['HAVE_WX']:
]
libs = [
'common',
]
if wxenv['HAVE_WX']:
files += [
'Externals/MemcardManager/src/mcmMain.cpp',
'Externals/MemcardManager/src/mcmMain.cpp',
'Externals/MemcardManager/src/MCMdebug.cpp',
'Source/Core/DolphinWX/Src/MemcardManager.cpp',
'Source/Core/DolphinWX/Src/MemoryCards/GCMemcard.cpp',
'Source/Core/DolphinWX/Src/MemcardManager.cpp',
'Source/Core/DolphinWX/Src/MemoryCards/GCMemcard.cpp',
'Source/Core/DolphinWX/Src/WxUtils.cpp',
]
LIBS = libs
exeGUI = env['binary_dir'] + 'MemcardManager'
wxenv.Program(exeGUI, files)
]
LIBS = libs
wxenv.Append(
LIBS = libs
)
exeGUI = env['binary_dir'] + 'MemcardManager'
wxenv.Program(exeGUI, files)