dolphin/Externals/MemcardManager/SConscript

21 lines
259 B
Python
Raw Normal View History

# -*- 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)