Force Qt to build the libs in order, and relink exe if a lib change

This commit is contained in:
Xele02 2013-02-01 22:40:17 +01:00
parent 510f1ac3f4
commit f7205f6543
2 changed files with 77 additions and 75 deletions

View File

@ -18,6 +18,7 @@ blackberry: LIBS += -L. -lCore -lCommon -lNative -lscreen -lsocket -lstdc++
win32: LIBS += -L. -lCore -lCommon -lNative -lwinmm -lws2_32 -lkernel32 -luser32 -lgdi32 -lshell32 -lcomctl32 -ldsound -lxinput
linux: LIBS += -L. -lCore -lCommon -lNative
linux: PRE_TARGETDEPS += ./libCommon.a ./libCore.a ./libNative.a
# Main
SOURCES += ../native/base/QtMain.cpp

View File

@ -1,3 +1,4 @@
TEMPLATE = subdirs
SUBDIRS = Native.pro Core.pro Common.pro PPSSPP.pro
CONFIG += ordered
PPSSPP.depends = Native.pro Core.pro Common.pro