mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-19 12:31:17 +01:00
a34ad40517
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5581 8ced0084-cf51-0410-be5f-012b33b47a6e
14 lines
234 B
Python
14 lines
234 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
if env['HAVE_WX']:
|
|
|
|
files = [
|
|
'ConfigDiagBitmaps.cpp',
|
|
'ConfigDiag.cpp',
|
|
'WXInputBase.cpp'
|
|
]
|
|
|
|
env_inputpc = env.Clone()
|
|
env_inputpc.StaticLibrary(env['local_libs'] + "inputuicommon", files)
|