fix linux build in hope it will help JP to fix the gui on linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4121 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
4968f6c29a
commit
387c6fdecd
|
@ -0,0 +1,44 @@
|
|||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
|
||||
files = [
|
||||
'lapi.c',
|
||||
'lauxlib.c',
|
||||
'lbaselib.c',
|
||||
'lcode.c',
|
||||
'ldblib.c',
|
||||
'ldebug.c',
|
||||
'ldo.c',
|
||||
'ldump.c',
|
||||
'lfunc.c',
|
||||
'lgc.c',
|
||||
'linit.c',
|
||||
'liolib.c',
|
||||
'llex.c',
|
||||
'lmathlib.c',
|
||||
'lmem.c',
|
||||
'loadlib.c',
|
||||
'lobject.c',
|
||||
'lopcodes.c',
|
||||
'loslib.c',
|
||||
'lparser.c',
|
||||
'lstate.c',
|
||||
'lstring.c',
|
||||
'lstrlib.c',
|
||||
'ltable.c',
|
||||
'ltablib.c',
|
||||
'ltm.c',
|
||||
'lua.c',
|
||||
'luac.c',
|
||||
'lundump.c',
|
||||
'lvm.c',
|
||||
'lzio.c',
|
||||
'print.c',
|
||||
]
|
||||
|
||||
env_lua = env.Clone(
|
||||
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
||||
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
||||
)
|
||||
env_lua.StaticLibrary(env['local_libs'] + "lua", files)
|
|
@ -20,8 +20,8 @@
|
|||
#include "Debugger.h"
|
||||
#include "StringUtil.h"
|
||||
#include "PowerPC/PowerPC.h"
|
||||
#include "BreakPointWindow.h"
|
||||
#include "BreakPointDlg.h"
|
||||
#include "BreakpointWindow.h"
|
||||
#include "BreakpointDlg.h"
|
||||
|
||||
BEGIN_EVENT_TABLE(BreakPointDlg,wxDialog)
|
||||
EVT_CLOSE(BreakPointDlg::OnClose)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "BreakpointView.h"
|
||||
#include "CodeWindow.h"
|
||||
#include "HW/Memmap.h"
|
||||
#include "BreakPointDlg.h"
|
||||
#include "BreakpointDlg.h"
|
||||
#include "MemoryCheckDlg.h"
|
||||
#include "Host.h"
|
||||
#include "PowerPC/PowerPC.h"
|
||||
|
|
Loading…
Reference in New Issue