code_production/app/HGProductionTool/HGProductionTool.pro

153 lines
4.1 KiB
Prolog
Raw Normal View History

2022-12-14 06:39:22 +00:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
TARGET = ProductionTool
RC_ICONS = image_rsc/logo/logo.ico
2023-07-25 07:07:06 +00:00
CONFIG(debug, debug|release) {
MY_CONFIGURE = Debug
}
CONFIG(release, debug|release) {
MY_CONFIGURE = Release
}
MY_OS = windows
OEM_NAME = huagao
OEM_PREFIX = HG
2022-12-14 06:39:22 +00:00
win32 {
2023-07-25 07:07:06 +00:00
contains(QT_ARCH, i386) {
MY_ARCH = x86
}
contains(QT_ARCH, x86_64) {
MY_ARCH = x64
}
LIBS += -L$$PWD/../../../code_app/build2/build/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE} -l$${OEM_PREFIX}Base -l$${OEM_PREFIX}ImgFmt -l$${OEM_PREFIX}ImgProc
LIBS += -L$$PWD/../../../sdk/lib/win/$${MY_ARCH}/OEM/$${OEM_NAME} -lsanexy
2023-07-25 07:07:06 +00:00
# sane.dll
LIBS += -L$$PWD/../../../release/win/$${MY_ARCH}/OEM/$${OEM_NAME}
2023-08-31 02:50:43 +00:00
# LIBS += -L$$PWD/../../db/$${MY_CONFIGURE} -lHGPdtToolDb
2023-07-25 07:07:06 +00:00
LIBS += -L$$PWD/../../code/base/$${MY_CONFIGURE} -ltest
2022-12-14 06:39:22 +00:00
}
2022-12-14 07:39:42 +00:00
INCLUDEPATH += $$PWD/../../../sdk/include/
2023-08-31 02:50:43 +00:00
#INCLUDEPATH += $$PWD/../../db/HGPdtToolDb/
2022-12-14 12:28:25 +00:00
INCLUDEPATH += $$PWD/../../code/base/
2022-12-14 06:39:22 +00:00
2023-07-25 07:07:06 +00:00
DESTDIR = $$PWD/../../../code_app/build2/build/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}
win32 {
CONFIG(release, debug|release) {
DESTEXE_PATH = $${PWD}/../../../release/win/$${MY_ARCH}/$${MY_CONFIGURE}/
DESTEXE_PATH = $$replace(DESTEXE_PATH, /, \\)
message(DESTEXE_PATH: $$DESTEXE_PATH)
SRCEXE_FILE = $${DESTDIR}/$${TARGET}.exe
SRCEXE_FILE = $$replace(SRCEXE_FILE, /, \\)
message(SRCEXE_FILE: $$SRCEXE_FILE)
SRCPDB_FILE = $${DESTDIR}/$${TARGET}.pdb
SRCPDB_FILE = $$replace(SRCPDB_FILE, /, \\)
message(SRCPDB_FILE: $$SRCPDB_FILE)
QMAKE_POST_LINK += xcopy /y $$SRCEXE_FILE $$DESTEXE_PATH && xcopy /y $$SRCPDB_FILE $$DESTEXE_PATH
}
}
2022-12-14 06:39:22 +00:00
SOURCES += \
2023-09-01 10:42:28 +00:00
../../../code_app/utility/HGString.cpp \
app_cfg.cpp \
2022-12-14 06:39:22 +00:00
HGImgView.cpp \
HGUIGlobal.cpp \
analysisjson.cpp \
dialog_accountmanage.cpp \
dialog_changepwd.cpp \
dialog_excepdesc.cpp \
2023-01-10 03:56:10 +00:00
dialog_hgmessagebox.cpp \
2022-12-16 11:01:30 +00:00
dialog_inputserialnum.cpp \
2022-12-14 06:39:22 +00:00
dialog_login.cpp \
dialog_rootfuntion.cpp \
2023-01-04 06:28:44 +00:00
dialog_setburnsn.cpp \
2023-09-12 03:02:45 +00:00
dialog_setlogpath.cpp \
2022-12-14 12:28:25 +00:00
dialog_uploadcfgfile.cpp \
2022-12-27 08:25:47 +00:00
dialog_userinput.cpp \
dialog_registeraccount.cpp \
2023-01-04 06:28:44 +00:00
form_burnmode.cpp \
2022-12-14 06:39:22 +00:00
form_maininterface.cpp \
form_texttips.cpp \
2022-12-15 07:00:12 +00:00
hgscanner.cpp \
2022-12-14 06:39:22 +00:00
main.cpp \
2022-12-15 07:00:12 +00:00
mainwindow.cpp \
ui_helper.cpp
2022-12-14 06:39:22 +00:00
HEADERS += \
2023-09-01 10:42:28 +00:00
../../../code_app/utility/HGString.h \
app_cfg.h \
2022-12-14 06:39:22 +00:00
HGImgView.h \
HGUIGlobal.h \
analysisjson.h \
dialog_accountmanage.h \
dialog_changepwd.h \
dialog_excepdesc.h \
2023-01-10 03:56:10 +00:00
dialog_hgmessagebox.h \
2022-12-16 11:01:30 +00:00
dialog_inputserialnum.h \
2022-12-14 06:39:22 +00:00
dialog_login.h \
dialog_rootfuntion.h \
2023-01-04 06:28:44 +00:00
dialog_setburnsn.h \
2023-09-12 03:02:45 +00:00
dialog_setlogpath.h \
2022-12-14 12:28:25 +00:00
dialog_uploadcfgfile.h \
2022-12-27 08:25:47 +00:00
dialog_userinput.h \
dialog_registeraccount.h \
2023-01-04 06:28:44 +00:00
form_burnmode.h \
2022-12-14 06:39:22 +00:00
form_maininterface.h \
form_texttips.h \
2022-12-15 07:00:12 +00:00
hgscanner.h \
mainwindow.h \
ui_helper.h
2022-12-14 06:39:22 +00:00
FORMS += \
dialog_accountmanage.ui \
dialog_changepwd.ui \
dialog_excepdesc.ui \
2023-01-10 03:56:10 +00:00
dialog_hgmessagebox.ui \
2022-12-16 11:01:30 +00:00
dialog_inputserialnum.ui \
2022-12-14 06:39:22 +00:00
dialog_login.ui \
dialog_rootfuntion.ui \
2023-01-04 06:28:44 +00:00
dialog_setburnsn.ui \
2023-09-12 03:02:45 +00:00
dialog_setlogpath.ui \
2022-12-14 12:28:25 +00:00
dialog_uploadcfgfile.ui \
2022-12-27 08:25:47 +00:00
dialog_userinput.ui \
dialog_registeraccount.ui \
2023-01-04 06:28:44 +00:00
form_burnmode.ui \
2022-12-14 06:39:22 +00:00
form_maininterface.ui \
form_texttips.ui \
mainwindow.ui
RESOURCES += \
ProductionTool_resource.qrc
TRANSLATIONS += \
2022-12-23 02:42:46 +00:00
ProductionTool_zh_CN.ts
2022-12-14 06:39:22 +00:00
DISTFILES += \
2022-12-23 02:42:46 +00:00
ProductionTool_zh_CN.qm