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