mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
4cfcf9bdd5
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3776 8ced0084-cf51-0410-be5f-012b33b47a6e
16 lines
299 B
Python
16 lines
299 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
files = [] #So it's declared outside the if
|
|
if env['HAVE_WX']:
|
|
files += [
|
|
'CodeView.cpp',
|
|
'DebuggerUIUtil.cpp',
|
|
'MemoryView.cpp',
|
|
]
|
|
|
|
acenv = env.Clone()
|
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
|
|
|
acenv.StaticLibrary(env['local_libs'] + 'debugger_ui_util', files)
|