# -*- python -*-

Import('env')

if not env['HAVE_WX']:
	Return()

files = [
	'src/mcmMain.cpp',
	'src/MCMdebug.cpp',
	]

libs = [
	'memcard',
	'common',
	]

exeGUI = env['binary_dir'] + 'MemcardManager'

env.Program('#' + exeGUI, files, LIBS = env['LIBS'] + libs)