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
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-30T18:29:59
#
#-------------------------------------------------
QT += widgets core gui xml serialport
qtHaveModule(webenginewidgets) {
QT += webenginewidgets
DEFINES +=QWEBENGINE
} else {
qtHaveModule(webkitwidgets) {
QT += webkitwidgets
DEFINES += QWEBKIT
}
}
include(../qtapp.pri)
TARGET = rtkplot_qt
TEMPLATE = app
INCLUDEPATH += ../../../src/ ../appcmn_qt
SOURCES += \
../appcmn_qt/aboutdlg.cpp \
conndlg.cpp \
mapoptdlg.cpp \
plotcmn.cpp \
plotdata.cpp \
plotdraw.cpp \
plotinfo.cpp \
plotmain.cpp \
plotopt.cpp \
pntdlg.cpp \
rtkplot.cpp \
skydlg.cpp \
../appcmn_qt/refdlg.cpp \
../appcmn_qt/freqdlg.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/mntpoptdlg.cpp \
../appcmn_qt/keydlg.cpp \
../appcmn_qt/graph.cpp \
../appcmn_qt/console.cpp \
../appcmn_qt/tspandlg.cpp \
fileseldlg.cpp \
mapview.cpp \
mapviewopt.cpp \
vmapdlg.cpp
HEADERS += \
../appcmn_qt/aboutdlg.h \
conndlg.h \
mapoptdlg.h \
plotmain.h \
plotopt.h \
pntdlg.h \
skydlg.h \
../appcmn_qt/refdlg.h \
../appcmn_qt/freqdlg.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/mntpoptdlg.h \
../appcmn_qt/keydlg.h \
../appcmn_qt/graph.h \
../appcmn_qt/console.h \
../appcmn_qt/tspandlg.h \
fileseldlg.h \
mapview.h \
mapviewopt.h \
vmapdlg.h
FORMS += \
../appcmn_qt/aboutdlg.ui \
conndlg.ui \
mapoptdlg.ui \
plotmain.ui \
plotopt.ui \
pntdlg.ui \
skydlg.ui \
../appcmn_qt/refdlg.ui \
../appcmn_qt/freqdlg.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/mntpoptdlg.ui \
../appcmn_qt/keydlg.ui \
../appcmn_qt/console.ui \
../appcmn_qt/tspandlg.ui \
fileseldlg.ui \
mapview.ui \
mapviewopt.ui \
vmapdlg.ui
RESOURCES += \
rtkplot_qt.qrc
RC_FILE = rtkplot_qt.rc
|