mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 10:39:13 +01:00
2d6011859a
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5605 8ced0084-cf51-0410-be5f-012b33b47a6e
20 lines
272 B
Python
20 lines
272 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'Config.cpp',
|
|
'ControllerEmu.cpp',
|
|
]
|
|
|
|
if env['HAVE_WX']:
|
|
files += [
|
|
'ConfigDiagBitmaps.cpp',
|
|
'ConfigDiag.cpp',
|
|
]
|
|
|
|
|
|
|
|
env_inputpc = env.Clone()
|
|
env_inputpc.StaticLibrary(env['local_libs'] + "inputplugincommon", files)
|