2010-11-16 00:13:33 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
|
|
if not env['HAVE_WX']:
|
|
|
|
Return()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'VideoConfigDiag.cpp',
|
2010-12-05 14:15:36 +00:00
|
|
|
'DebuggerPanel.cpp',
|
2010-11-16 00:13:33 +00:00
|
|
|
]
|
|
|
|
|
2011-02-04 00:46:56 +00:00
|
|
|
env['LIBS'] += env.StaticObject(files)
|