mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Qt buildfix for Qt 5.2.0
adding the -lz in line "LIBS" in Linux section to fix compilation error when compiling under Qt version 5.2.0. See issue #4885
This commit is contained in:
parent
0de71f27cb
commit
33f26a68c2
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ win32 {
|
||||||
else: LIBS += $$files($$P/dx9sdk/Lib/x86/*.lib)
|
else: LIBS += $$files($$P/dx9sdk/Lib/x86/*.lib)
|
||||||
}
|
}
|
||||||
linux {
|
linux {
|
||||||
LIBS += -ldl -lrt
|
LIBS += -ldl -lrt -lz
|
||||||
PRE_TARGETDEPS += $$CONFIG_DIR/libCommon.a $$CONFIG_DIR/libCore.a $$CONFIG_DIR/libNative.a
|
PRE_TARGETDEPS += $$CONFIG_DIR/libCommon.a $$CONFIG_DIR/libCore.a $$CONFIG_DIR/libNative.a
|
||||||
packagesExist(sdl) {
|
packagesExist(sdl) {
|
||||||
DEFINES += QT_HAS_SDL
|
DEFINES += QT_HAS_SDL
|
||||||
|
|
Loading…
Add table
Reference in a new issue