dolphin/Source/Core/DebuggerUICommon/Src/SConscript

19 lines
276 B
Python

# -*- python -*-
Import('env')
import sys
if not env['HAVE_WX']:
Return()
files = [
'CodeView.cpp',
'DebuggerUIUtil.cpp',
'MemoryView.cpp',
]
acenv = env.Clone()
acenv.Append(CXXFLAGS = [ '-fPIC' ])
acenv.StaticLibrary(env['local_libs'] + 'debugger_ui_util', files)