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

Last change on this file since 5454 was 5454, checked in by mervart, 11 years ago
File size: 1.3 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 dlgconf.h \
28 utils.h \
29 const.h \
30 worldplot.h \
31 thriftclient.h
32
33SOURCES = monitor.cpp \
34 dlgconf.cpp \
35 utils.cpp \
36 const.cpp \
37 worldplot.cpp \
38 thriftclient.cpp \
39 ../main/settings.cpp \
40 gen-cpp/RtnetData.cpp \
41 gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \
42 gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp
43
44
45RESOURCES = monitor.qrc
Note: See TracBrowser for help on using the repository browser.