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

Last change on this file since 6591 was 6591, checked in by mervart, 9 years ago
File size: 1.4 KB
Line 
1
2TEMPLATE = lib
3CONFIG += plugin debug
4QT += svg
5TARGET = $$qtLibraryTarget(gnsscenter_monitor)
6DESTDIR = ../plugins
7DEFINES += HAVE_INTTYPES_H HAVE_NETINET_IN_H
8
9debug:OBJECTS_DIR = .obj/debug
10debug:MOC_DIR = .moc/debug
11release:OBJECTS_DIR = .obj/release
12release:MOC_DIR = .moc/release
13
14THRIFT_ROOT = $(HOME)/Software/thrift
15
16INCLUDEPATH += ../main ../qwt $$THRIFT_ROOT/include
17QMAKE_LIBDIR += ../qwt $$THRIFT_ROOT/lib
18LIBS = -lqwt -lthrift
19
20thrift.target = gen-cpp
21thrift.commands = "$$THRIFT_ROOT/bin/thrift -r -gen cpp $(THRIFT_DIR)/rtnet.thrift"
22thrift.depends = $(THRIFT_DIR)/rtnet.thrift $(THRIFT_DIR)/rtnet_data.thrift
23
24PRE_TARGETDEPS += gen-cpp
25QMAKE_EXTRA_TARGETS += thrift
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.