mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 18:49:11 +01:00
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)
|