Fix Qt build by building Arm disassembler for all platforms.

This commit is contained in:
Sacha 2014-11-13 00:55:00 +10:00
parent a0086f6412
commit c421617c84
3 changed files with 5 additions and 8 deletions

View File

@ -229,9 +229,6 @@ private:
FakeJitOptions jo;
JitState js;
// FakeRegCache gpr;
// FakeRegCacheFPU fpr;
MIPSState *mips_;
int dontLogBlocks;

View File

@ -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

View File

@ -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 \