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
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-30T18:29:59
#
#-------------------------------------------------
QT += widgets core gui
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
}
include(../../RTKLib.pri)
TARGET = rtkconv_qt
TEMPLATE = app
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}
SOURCES += \
codeopt.cpp \
convmain.cpp \
convopt.cpp \
rtkconv.cpp \
startdlg.cpp \
../appcmn_qt/aboutdlg.cpp \
../appcmn_qt/keydlg.cpp \
../appcmn_qt/timedlg.cpp \
../appcmn_qt/viewer.cpp \
../appcmn_qt/vieweropt.cpp
HEADERS += \
codeopt.h \
convmain.h \
convopt.h \
startdlg.h \
../appcmn_qt/aboutdlg.h \
../appcmn_qt/keydlg.h \
../appcmn_qt/timedlg.h \
../appcmn_qt/viewer.h \
../appcmn_qt/vieweropt.h
FORMS += \
codeopt.ui \
convopt.ui \
startdlg.ui \
convmain.ui \
../appcmn_qt/aboutdlg.ui \
../appcmn_qt/keydlg.ui \
../appcmn_qt/timedlg.ui \
../appcmn_qt/viewer.ui \
../appcmn_qt/vieweropt.ui
RESOURCES += \
rtkconv_qt.qrc
RC_FILE = rtkconv_qt.rc
|