source: ntrip/trunk/BNC/src/src.pri@ 5738

Last change on this file since 5738 was 5738, checked in by mervart, 10 years ago
File size: 6.2 KB
Line 
1
2DEFINES += NO_RTCM3_MAIN
3unix:DEFINES += _TTY_POSIX_
4win32:DEFINES += _TTY_WIN_
5
6RESOURCES += bnc.qrc
7
8QT += svg
9
10unix:QMAKE_CFLAGS_RELEASE -= -O2
11unix:QMAKE_CXXFLAGS_RELEASE -= -O2
12
13# Get rid of mingwm10.dll and libgcc_s_dw2-1.dll
14# ----------------------------------------------
15win32 {
16 QMAKE_LFLAGS += -static-libgcc
17 QMAKE_LFLAGS -= -mthreads
18 QMAKE_CXXFLAGS_EXCEPTIONS_ON -= -mthreads
19 QMAKE_LFLAGS_EXCEPTIONS_ON -= -mthreads
20}
21
22debug:OBJECTS_DIR=.obj/debug
23debug:MOC_DIR=.moc/debug
24release:OBJECTS_DIR=.obj/release
25release:MOC_DIR=.moc/release
26
27# Include Path
28# ------------
29INCLUDEPATH += . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex \
30 ../qwt ../qwtpolar
31
32# Additional Libraries
33# --------------------
34unix:LIBS += -L../newmat -lnewmat -L../qwt -L../qwtpolar -lqwtpolar -lqwt
35win32:LIBS += -L../newmat/release -L../qwt/release -L../qwtpolar/release \
36 -lnewmat -lqwtpolar -lqwt
37
38HEADERS = bnchelp.html bncgetthread.h bncwindow.h bnctabledlg.h \
39 bnccaster.h bncrinex.h bnccore.h bncutils.h bnchlpdlg.h \
40 bncconst.h bnchtml.h bnctableitem.h bnczerodecoder.h \
41 bncnetquery.h bncnetqueryv1.h bncnetqueryv2.h \
42 bncnetqueryrtp.h bncsettings.h latencychecker.h \
43 bncipport.h bncnetqueryv0.h bncnetqueryudp.h \
44 bncnetqueryudp0.h bncudpport.h bnctime.h pppopt.h \
45 bncserialport.h bncnetquerys.h bncfigure.h \
46 bncfigurelate.h bncpppclient.h bncversion.h \
47 bancroft.h bncmodel.h bncfigureppp.h bncrawfile.h \
48 bnctides.h bncmap.h bncantex.h \
49 bncephuser.h bncoutf.h bncclockrinex.h bncsp3.h \
50 bncbytescounter.h bncsslconfig.h reqcdlg.h \
51 upload/bncrtnetdecoder.h upload/bncuploadcaster.h \
52 ephemeris.h timeutils.h \
53 upload/bncrtnetuploadcaster.h upload/bnccustomtrafo.h \
54 upload/bncephuploadcaster.h bnccomb.h qtfilechooser.h \
55 GPSDecoder.h RTCM/RTCM2.h RTCM/RTCM2Decoder.h \
56 RTCM/RTCM2_2021.h RTCM/rtcm_utils.h \
57 RTCM3/RTCM3Decoder.h RTCM3/rtcm3torinex/rtcm3torinex.h \
58 RTCM3/RTCM3coDecoder.h \
59 RTCM3/clock_and_orbit/clock_orbit_rtcm.h \
60 GPSS/gpssDecoder.h GPSS/hassDecoder.h \
61 PPP/pppwidgets.h PPP/options.h PPP/pppMain.h \
62 PPP/pppThread.h
63
64HEADERS += serial/qextserialbase.h serial/qextserialport.h
65unix:HEADERS += serial/posix_qextserialport.h
66win32:HEADERS += serial/win_qextserialport.h
67
68SOURCES = bncgetthread.cpp bncwindow.cpp bnctabledlg.cpp \
69 bnccaster.cpp bncrinex.cpp bnccore.cpp bncutils.cpp \
70 bncconst.cpp bnchtml.cpp bnchlpdlg.cpp bnctableitem.cpp \
71 bnczerodecoder.cpp bncnetqueryv1.cpp bncnetqueryv2.cpp \
72 bncnetqueryrtp.cpp bncsettings.cpp latencychecker.cpp \
73 bncipport.cpp bncnetqueryv0.cpp bncnetqueryudp.cpp \
74 bncnetqueryudp0.cpp bncudpport.cpp pppopt.cpp \
75 bncserialport.cpp bncnetquerys.cpp bncfigure.cpp \
76 bncfigurelate.cpp bncpppclient.cpp bnctime.cpp \
77 bancroft.cpp bncmodel.cpp bncfigureppp.cpp bncrawfile.cpp \
78 bnctides.cpp bncmap_svg.cpp bncantex.cpp \
79 bncephuser.cpp bncoutf.cpp bncclockrinex.cpp bncsp3.cpp \
80 bncbytescounter.cpp bncsslconfig.cpp reqcdlg.cpp \
81 ephemeris.cpp timeutils.cpp \
82 upload/bncrtnetdecoder.cpp upload/bncuploadcaster.cpp \
83 upload/bncrtnetuploadcaster.cpp upload/bnccustomtrafo.cpp \
84 upload/bncephuploadcaster.cpp qtfilechooser.cpp \
85 GPSDecoder.cpp RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp \
86 RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp \
87 RTCM3/RTCM3Decoder.cpp RTCM3/rtcm3torinex/rtcm3torinex.c \
88 RTCM3/RTCM3coDecoder.cpp \
89 RTCM3/clock_and_orbit/clock_orbit_rtcm.c \
90 GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp \
91 PPP/pppwidgets.cpp PPP/options.cpp PPP/pppMain.cpp \
92 PPP/pppThread.cpp
93
94SOURCES += serial/qextserialbase.cpp serial/qextserialport.cpp
95unix:SOURCES += serial/posix_qextserialport.cpp
96win32:SOURCES += serial/win_qextserialport.cpp
97
98RC_FILE = bnc.rc
99
100QT += network
101
102exists(combination/bnccomb.h) {
103 DEFINES += USE_COMBINATION
104 HEADERS += combination/bnccomb.h
105 SOURCES += combination/bnccomb.cpp
106}
107
108exists(rinex/bncpostprocess.h) {
109 DEFINES += USE_POSTPROCESSING
110 HEADERS += rinex/bncpostprocess.h rinex/rnxobsfile.h \
111 rinex/rnxnavfile.h rinex/corrfile.h \
112 rinex/reqcedit.h rinex/reqcanalyze.h \
113 rinex/graphwin.h rinex/polarplot.h \
114 rinex/availplot.h rinex/eleplot.h \
115 rinex/dopplot.h
116 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \
117 rinex/rnxnavfile.cpp rinex/corrfile.cpp \
118 rinex/reqcedit.cpp rinex/reqcanalyze.cpp \
119 rinex/graphwin.cpp rinex/polarplot.cpp \
120 rinex/availplot.cpp rinex/eleplot.cpp \
121 rinex/dopplot.cpp
122}
123
124# Check QtWebKit Library Existence
125# --------------------------------
126win32 {
127 exists("$$[QT_INSTALL_BINS]/QtWebKit4.dll") {
128 DEFINES += QT_WEBKIT
129 }
130}
131
132unix {
133 exists("$$[QT_INSTALL_LIBS]/libQtWebKit.so") {
134 DEFINES += QT_WEBKIT
135 }
136}
137
138macx {
139 exists("$$[QT_INSTALL_LIBS]/QtWebKit.framework") {
140 DEFINES += QT_WEBKIT
141 }
142}
143
144contains(DEFINES, QT_WEBKIT) {
145 message("Configured with QtWebKit")
146 QT += webkit
147 HEADERS += map/bncmapwin.h
148 SOURCES += map/bncmapwin.cpp
149 OTHER_FILES += map/map_gm.html map/map_osm.html
150}
151else {
152 message("No QtWebKit")
153}
Note: See TracBrowser for help on using the repository browser.