Fixing the path that was unix specific to work for both unix and win32
This commit is contained in:
parent
ab007ce0a5
commit
9ac311f80f
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user