source: ntrip/trunk/GnssCenter/monitor/monitor.pro@ 5501

Last change on this file since 5501 was 5501, checked in by mervart, 11 years ago
File size: 1.4 KB
Line 
1
2TEMPLATE = lib
3CONFIG += plugin debug
4TARGET = $$qtLibraryTarget(gnsscenter_monitor)
5QT += svg
6INCLUDEPATH += ../qwt ../main
7DESTDIR = ../plugins
8LIBS = -L../qwt -lqwt
9
10INCLUDEPATH += /usr/local/include/thrift
11INCLUDEPATH += /usr/include/thrift
12DEFINES += HAVE_INTTYPES_H HAVE_NETINET_IN_H
13
14debug:OBJECTS_DIR = .obj/debug
15debug:MOC_DIR = .moc/debug
16release:OBJECTS_DIR = .obj/release
17release:MOC_DIR = .moc/release
18
19thrift.target = gen-cpp
20thrift.commands = "thrift -r -gen cpp $(THRIFT_DIR)/rtnet.thrift"
21thrift.depends = $(THRIFT_DIR)/rtnet.thrift $(THRIFT_DIR)/rtnet_data.thrift
22
23QMAKE_EXTRA_TARGETS += thrift
24PRE_TARGETDEPS += gen-cpp
25LIBS += -lthrift
26
27HEADERS = monitor.h \
28 dlgconf.h \
29 utils.h \
30 const.h \
31 worldplot.h \
32 thriftclient.h
33
34SOURCES = monitor.cpp \
35 dlgconf.cpp \
36 utils.cpp \
37 const.cpp \
38 worldplot.cpp \
39 thriftclient.cpp \
40 ../main/settings.cpp \
41 gen-cpp/RtnetData.cpp \
42 gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \
43 gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp
44
45
46RESOURCES = monitor.qrc
Note: See TracBrowser for help on using the repository browser.