2008-05-03 09:37:10 -05:00
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += qt debug
|
|
|
|
QT += network
|
2009-04-27 11:51:44 -05:00
|
|
|
INCLUDEPATH += "../rpc/" "../common/"
|
2009-01-17 05:37:35 -06:00
|
|
|
LIBS += -lprotobuf
|
2009-04-27 11:51:44 -05:00
|
|
|
win32:LIBS += -L"../common/debug" -lostproto
|
|
|
|
unix: LIBS += -L"../common" -lostproto
|
2009-01-17 05:37:35 -06:00
|
|
|
win32:LIBS += -L"../rpc/debug" -lpbrpc
|
|
|
|
unix:LIBS += -L"../rpc" -lpbrpc
|
2009-04-27 11:51:44 -05:00
|
|
|
POST_TARGETDEPS += "../common/debug/libostproto.a" "../rpc/debug/libpbrpc.a"
|
2008-05-03 09:37:10 -05:00
|
|
|
RESOURCES += ostinato.qrc
|
|
|
|
HEADERS += \
|
2008-05-25 06:30:30 -05:00
|
|
|
dumpview.h \
|
2008-05-03 09:37:10 -05:00
|
|
|
hexlineedit.h \
|
|
|
|
mainwindow.h \
|
2008-05-25 06:30:30 -05:00
|
|
|
packetmodel.h \
|
2008-05-03 09:37:10 -05:00
|
|
|
port.h \
|
|
|
|
portgroup.h \
|
|
|
|
portgrouplist.h \
|
|
|
|
portmodel.h \
|
|
|
|
portstatsmodel.h \
|
2008-05-25 06:30:30 -05:00
|
|
|
portstatsfilterdialog.h \
|
2008-05-03 09:37:10 -05:00
|
|
|
portstatswindow.h \
|
|
|
|
portswindow.h \
|
|
|
|
streamconfigdialog.h \
|
2009-03-10 11:48:03 -05:00
|
|
|
streamlistdelegate.h \
|
2008-05-03 09:37:10 -05:00
|
|
|
streammodel.h
|
|
|
|
|
|
|
|
FORMS += \
|
2009-04-05 02:19:37 -05:00
|
|
|
about.ui \
|
2008-05-03 09:37:10 -05:00
|
|
|
mainwindow.ui \
|
2008-05-25 06:30:30 -05:00
|
|
|
portstatsfilter.ui \
|
2008-05-03 09:37:10 -05:00
|
|
|
portstatswindow.ui \
|
|
|
|
portswindow.ui \
|
|
|
|
streamconfigdialog.ui
|
|
|
|
|
|
|
|
SOURCES += \
|
2008-05-25 06:30:30 -05:00
|
|
|
dumpview.cpp \
|
2008-05-03 09:37:10 -05:00
|
|
|
stream.cpp \
|
|
|
|
hexlineedit.cpp \
|
|
|
|
main.cpp \
|
|
|
|
mainwindow.cpp \
|
2008-05-25 06:30:30 -05:00
|
|
|
packetmodel.cpp \
|
2008-05-03 09:37:10 -05:00
|
|
|
port.cpp \
|
|
|
|
portgroup.cpp \
|
|
|
|
portgrouplist.cpp \
|
|
|
|
portmodel.cpp \
|
|
|
|
portstatsmodel.cpp \
|
2008-05-25 06:30:30 -05:00
|
|
|
portstatsfilterdialog.cpp \
|
2008-05-03 09:37:10 -05:00
|
|
|
portstatswindow.cpp \
|
|
|
|
portswindow.cpp \
|
|
|
|
streamconfigdialog.cpp \
|
2009-03-10 11:48:03 -05:00
|
|
|
streamlistdelegate.cpp \
|
2008-05-03 09:37:10 -05:00
|
|
|
streammodel.cpp
|
|
|
|
|
|
|
|
# TODO(LOW): Test only
|
|
|
|
include(modeltest.pri)
|