Fixing the path that was unix specific to work for both unix and win32

This commit is contained in:
Srivats P. 2009-01-17 11:37:35 +00:00
parent ab007ce0a5
commit 9ac311f80f

View File

@ -2,7 +2,9 @@ TEMPLATE = app
CONFIG += qt debug
QT += network
INCLUDEPATH += "../rpc/"
LIBS += -lprotobuf -L"../rpc/" -lpbrpc
LIBS += -lprotobuf
win32:LIBS += -L"../rpc/debug" -lpbrpc
unix:LIBS += -L"../rpc" -lpbrpc
RESOURCES += ostinato.qrc
HEADERS += \
dumpview.h \