13 lines
167 B
Python
13 lines
167 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
if not env['HAVE_WX']:
|
||
|
Return()
|
||
|
|
||
|
files = [
|
||
|
'VideoConfigDiag.cpp',
|
||
|
]
|
||
|
|
||
|
env.StaticLibrary(env['local_libs'] + 'videouicommon', files)
|