mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Complete Qt5 support on Windows. http://i.imgur.com/uSIrRsp.png
Conflicts: Qt/Core.pro Qt/PPSSPP.pro
This commit is contained in:
parent
027ba31752
commit
b0fa1a6835
2 changed files with 12 additions and 1 deletions
|
@ -30,6 +30,12 @@ x86 {
|
|||
win32 {
|
||||
SOURCES += ../Windows/OpenGLBase.cpp
|
||||
HEADERS += ../Windows/OpenGLBase.h
|
||||
|
||||
SOURCES += ../GPU/Directx9/helper/*.cpp
|
||||
HEADERS += ../GPU/Directx9/helper/*.h
|
||||
SOURCES += ../GPU/Directx9/*.cpp
|
||||
HEADERS += ../GPU/Directx9/*.h
|
||||
INCLUDEPATH += ../dx9sdk/Include
|
||||
}
|
||||
|
||||
SOURCES += ../Core/*.cpp \ # Core
|
||||
|
|
|
@ -28,7 +28,12 @@ win32 {
|
|||
LIBS += -L$$OUT_PWD/debug
|
||||
}
|
||||
FFMPEG_DIR = ../ffmpeg/Windows/$${QMAKE_TARGET.arch}/lib/
|
||||
LIBS += -lCore -lCommon -lNative -lwinmm -lws2_32
|
||||
LIBS += -lCore -lCommon -lNative -lwinmm -lws2_32 -lShell32 -lAdvapi32
|
||||
contains($$QMAKE_TARGET.arch, x86_64) {
|
||||
LIBS += $$files(../dx9sdk/Lib/x64/*.lib)
|
||||
} else {
|
||||
LIBS += $$files(../dx9sdk/Lib/x86/*.lib)
|
||||
}
|
||||
LIBS += $${FFMPEG_DIR}avformat.lib $${FFMPEG_DIR}avcodec.lib $${FFMPEG_DIR}avutil.lib $${FFMPEG_DIR}swresample.lib $${FFMPEG_DIR}swscale.lib
|
||||
}
|
||||
linux {
|
||||
|
|
Loading…
Add table
Reference in a new issue