mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
75dbad3610
which aren't really useful to typical users. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5935 8ced0084-cf51-0410-be5f-012b33b47a6e
19 lines
222 B
Python
19 lines
222 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
if not env['HAVE_WX']:
|
|
Return()
|
|
|
|
files = [
|
|
'src/mcmMain.cpp',
|
|
'src/MCMdebug.cpp',
|
|
]
|
|
|
|
libs = [
|
|
'memcard',
|
|
'common',
|
|
]
|
|
|
|
env.Program('MemcardManager', files, LIBS = env['LIBS'] + libs)
|