mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
OSX build fixes for the Qt version
This commit is contained in:
parent
997f5090d7
commit
8c52ce3274
@ -30,6 +30,7 @@ LIBS += -lCore$${XT} -lCommon$${XT} -lNative$${XT}
|
||||
# FFMPEG Path
|
||||
win32: FFMPEG_DIR = ../ffmpeg/Windows/$${QMAKE_TARGET.arch}/lib/
|
||||
linux: FFMPEG_DIR = ../ffmpeg/linux/$${QMAKE_TARGET.arch}/lib/
|
||||
macx|!mobile_platform: FFMPEG_DIR = ../ffmpeg/macosx/x86_64/lib/
|
||||
qnx: FFMPEG_DIR = ../ffmpeg/blackberry/armv7/lib/
|
||||
symbian:FFMPEG_DIR = -l
|
||||
|
||||
|
@ -52,6 +52,12 @@ contains(MEEGO_EDITION,harmattan) {
|
||||
DEFINES += MEEGO_EDITION_HARMATTAN "_SYS_UCONTEXT_H=1"
|
||||
}
|
||||
|
||||
macx:!mobile_platform {
|
||||
INCLUDEPATH += ../ffmpeg/macosx/x86_64/include
|
||||
#the qlist headers include <initializer_list> in QT5
|
||||
greaterThan(QT_MAJOR_VERSION,4):CONFIG+=c++11
|
||||
}
|
||||
|
||||
linux:!mobile_platform {
|
||||
contains(QT_ARCH, x86_64): QMAKE_TARGET.arch = x86_64
|
||||
else: QMAKE_TARGET.arch = x86
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include <QInputDialog>
|
||||
#include <QMessageBox>
|
||||
|
||||
#include "math.h"
|
||||
|
||||
#include "debugger_disasm.h"
|
||||
#include "Core/Debugger/SymbolMap.h"
|
||||
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include <QClipboard>
|
||||
#include <QInputDialog>
|
||||
|
||||
#include "math.h"
|
||||
|
||||
#include "EmuThread.h"
|
||||
#include "Core/MemMap.h"
|
||||
#include "Core/Debugger/SymbolMap.h"
|
||||
|
Loading…
Reference in New Issue
Block a user