1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-30T18:29:59
#
#-------------------------------------------------
QT += widgets core gui
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets serialport
DEFINES += QT5
}
lessThan(QT_MAJOR_VERSION, 5) {
LIBS += -lqextserialport-1.2
DEFINES += QEXTSERIALPORT
}
qtHaveModule(webenginewidgets) {
QT+= webenginewidgets
DEFINES+=QWEBENGINE
} else {
qtHaveModule(webkitwidgets) {
QT+= webkitwidgets
DEFINES+= QWEBKIT
}
}
include(../../RTKLib.pri)
TARGET = rtkplot_qt
TEMPLATE = app
INCLUDEPATH += ../../src/ ../appcmn_qt ../rtkplot_qt
linux{
RTKLIB =../../src/libRTKLib.a
LIBS += -lpng $${RTKLIB}
}
win32 {
CONFIG(debug) {
RTKLIB = ../../src/debug/libRTKLib.a
} else {
RTKLIB =../../src/release/libRTKLib.a
}
LIBS+= $${RTKLIB} -lWs2_32 -lwinmm
}
PRE_TARGETDEPS = $${RTKLIB}
SOURCES += \
../appcmn_qt/aboutdlg.cpp \
conndlg.cpp \
geview.cpp \
mapdlg.cpp \
plotcmn.cpp \
plotdata.cpp \
plotdraw.cpp \
plotinfo.cpp \
plotmain.cpp \
plotopt.cpp \
pntdlg.cpp \
rtkplot.cpp \
satdlg.cpp \
skydlg.cpp \
../appcmn_qt/refdlg.cpp \
../appcmn_qt/viewer.cpp \
../appcmn_qt/vieweropt.cpp \
../appcmn_qt/cmdoptdlg.cpp \
../appcmn_qt/fileoptdlg.cpp \
../appcmn_qt/serioptdlg.cpp \
../appcmn_qt/tcpoptdlg.cpp \
../appcmn_qt/keydlg.cpp \
../appcmn_qt/graph.cpp \
../appcmn_qt/console.cpp \
../appcmn_qt/tspandlg.cpp \
fileseldlg.cpp \
../appcmn_qt/gmview.cpp
HEADERS += \
../appcmn_qt/aboutdlg.h \
conndlg.h \
geview.h \
mapdlg.h \
plotmain.h \
plotopt.h \
pntdlg.h \
satdlg.h \
skydlg.h \
../appcmn_qt/refdlg.h \
../appcmn_qt/viewer.h \
../appcmn_qt/vieweropt.h \
../appcmn_qt/cmdoptdlg.h \
../appcmn_qt/fileoptdlg.h \
../appcmn_qt/serioptdlg.h \
../appcmn_qt/tcpoptdlg.h \
../appcmn_qt/keydlg.h \
../appcmn_qt/graph.h \
../appcmn_qt/console.h \
../appcmn_qt/tspandlg.h \
fileseldlg.h \
../appcmn_qt/gmview.h
FORMS += \
../appcmn_qt/aboutdlg.ui \
conndlg.ui \
geview.ui \
mapdlg.ui \
plotmain.ui \
plotopt.ui \
pntdlg.ui \
satdlg.ui \
skydlg.ui \
../appcmn_qt/refdlg.ui \
../appcmn_qt/viewer.ui \
../appcmn_qt/vieweropt.ui \
../appcmn_qt/cmdoptdlg.ui \
../appcmn_qt/fileoptdlg.ui \
../appcmn_qt/serioptdlg.ui \
../appcmn_qt/tcpoptdlg.ui \
../appcmn_qt/keydlg.ui \
../appcmn_qt/console.ui \
../appcmn_qt/tspandlg.ui \
fileseldlg.ui \
../appcmn_qt/gmview.ui
RESOURCES += \
rtkplot_qt.qrc
RC_FILE = rtkplot_qt.rc
|