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

Last change on this file since 5452 was 5452, checked in by mervart, 11 years ago
File size: 1.2 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
11DEFINES += HAVE_INTTYPES_H HAVE_NETINET_IN_H
12
13debug:OBJECTS_DIR = .obj/debug
14debug:MOC_DIR = .moc/debug
15release:OBJECTS_DIR = .obj/release
16release:MOC_DIR = .moc/release
17
18thrift.target = gen-cpp
19thrift.commands = "thrift -r -gen cpp rtnet.thrift"
20thrift.depends = rtnet.thrift rtnet_data.thrift
21
22QMAKE_EXTRA_TARGETS += thrift
23PRE_TARGETDEPS += gen-cpp
24LIBS += -lthrift
25
26HEADERS = monitor.h \
27 utils.h \
28 const.h \
29 worldplot.h \
30 thriftclient.h
31
32SOURCES = monitor.cpp \
33 utils.cpp \
34 const.cpp \
35 worldplot.cpp \
36 thriftclient.cpp \
37 ../main/settings.cpp \
38 gen-cpp/RtnetData.cpp \
39 gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \
40 gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp
41
42
43RESOURCES = monitor.qrc
Note: See TracBrowser for help on using the repository browser.