mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-23 16:19:44 +00:00
Fix Qt build by building Arm disassembler for all platforms.
This commit is contained in:
parent
a0086f6412
commit
c421617c84
@ -229,9 +229,6 @@ private:
|
||||
FakeJitOptions jo;
|
||||
JitState js;
|
||||
|
||||
// FakeRegCache gpr;
|
||||
// FakeRegCacheFPU fpr;
|
||||
|
||||
MIPSState *mips_;
|
||||
|
||||
int dontLogBlocks;
|
||||
|
@ -8,9 +8,7 @@ include(Settings.pri)
|
||||
# CPU
|
||||
arm {
|
||||
SOURCES += $$P/Common/ArmCPUDetect.cpp \
|
||||
$$P/Common/ArmEmitter.cpp \
|
||||
$$P/Common/ArmThunk.cpp
|
||||
HEADERS += $$P/Common/ArmEmitter.h
|
||||
}
|
||||
i86 {
|
||||
SOURCES += $$P/Common/ABI.cpp \
|
||||
@ -23,7 +21,9 @@ i86 {
|
||||
$$P/Common/x64Analyzer.h \
|
||||
$$P/Common/x64Emitter.h
|
||||
}
|
||||
HEADERS += $$P/Common/CPUDetect.h
|
||||
SOURCES += $$P/Common/ArmEmitter.cpp
|
||||
HEADERS += $$P/Common/ArmEmitter.h \
|
||||
$$P/Common/CPUDetect.h
|
||||
|
||||
win32 {
|
||||
SOURCES += $$P/Common/stdafx.cpp
|
||||
|
@ -9,8 +9,7 @@ INCLUDEPATH += $$P/ $$P/native $$P/Core/MIPS $$P/ext/xbrz
|
||||
!contains(DEFINES, USING_GLES2): INCLUDEPATH += $$P/native/ext/glew
|
||||
|
||||
arm {
|
||||
SOURCES += $$P/Core/MIPS/ARM/*.cpp \ #CoreARM
|
||||
$$P/ext/disarm.cpp
|
||||
SOURCES += $$P/Core/MIPS/ARM/*.cpp #CoreARM
|
||||
HEADERS += $$P/Core/MIPS/ARM/*.h
|
||||
}
|
||||
else:i86 {
|
||||
@ -21,6 +20,7 @@ else {
|
||||
SOURCES += $$P/Core/MIPS/fake/*.cpp
|
||||
HEADERS += $$P/Core/MIPS/fake/*.h
|
||||
}
|
||||
SOURCES += $$P/ext/disarm.cpp
|
||||
|
||||
SOURCES += $$P/Core/*.cpp \ # Core
|
||||
$$P/Core/Debugger/*.cpp \
|
||||
|
Loading…
Reference in New Issue
Block a user