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
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-09T19:09:57
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
include(../../RTKLib.pri)
INCLUDEPATH += ../../src/ ../appcmn_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}
TARGET = rtkget_qt
TEMPLATE = app
SOURCES += main.cpp \
getmain.cpp \
getoptdlg.cpp \
staoptdlg.cpp \
../appcmn_qt/aboutdlg.cpp \
../appcmn_qt/keydlg.cpp \
../appcmn_qt/viewer.cpp \
../appcmn_qt/vieweropt.cpp \
../appcmn_qt/timedlg.cpp
HEADERS += \
getmain.h \
getoptdlg.h \
staoptdlg.h \
../appcmn_qt/aboutdlg.h \
../appcmn_qt/keydlg.h \
../appcmn_qt/viewer.h \
../appcmn_qt/vieweropt.h \
../appcmn_qt/timedlg.h
FORMS += \
getmain.ui \
getoptdlg.ui \
staoptdlg.ui \
../appcmn_qt/aboutdlg.ui \
../appcmn_qt/keydlg.ui \
../appcmn_qt/viewer.ui \
../appcmn_qt/vieweropt.ui \
../appcmn_qt/timedlg.ui
RESOURCES += \
rtkget_qt.qrc
RC_FILE = rtkget_qt.rc
|