2010-06-11 15:18:36 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
2010-06-14 18:07:29 +00:00
|
|
|
|
|
|
|
if not env['HAVE_WX']:
|
|
|
|
Return()
|
|
|
|
|
2009-08-16 06:21:02 +00:00
|
|
|
files = [
|
2010-07-19 03:42:37 +00:00
|
|
|
'src/mcmMain.cpp',
|
|
|
|
'src/MCMdebug.cpp',
|
2010-06-11 15:18:36 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
libs = [
|
2010-06-14 18:07:29 +00:00
|
|
|
'memcard',
|
2010-06-11 15:18:36 +00:00
|
|
|
'common',
|
|
|
|
]
|
|
|
|
|
|
|
|
exeGUI = env['binary_dir'] + 'MemcardManager'
|
|
|
|
|
2010-07-20 02:45:31 +00:00
|
|
|
env.Program('#' + exeGUI, files, LIBS = env['LIBS'] + libs)
|