code_app/build2/qt/HGScanTool/HGScanTool.pro

135 lines
4.5 KiB
Prolog
Raw Normal View History

2024-04-23 09:44:22 +00:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TEMPLATE = app
DEFINES += UNTITLED_LIBRARY
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
DEFINES += QT_NO_VERSION_TAGGING
# 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
include($$PWD/../HGOEM.pri)
CONFIG(debug, debug|release) {
MY_CONFIGURE = Debug
}
CONFIG(release, debug|release) {
MY_CONFIGURE = Release
}
2024-05-05 01:46:50 +00:00
RC_ICONS = ../../../app/scantool/image_rsc/ico/logo.ico
2024-04-23 09:44:22 +00:00
win32 {
MY_OS = windows
TARGET = $${OEM_PREFIX}ScanTool
contains(QT_ARCH, i386) {
MY_ARCH = x86
}
contains(QT_ARCH, x86_64) {
MY_ARCH = x64
}
CONFIG(release, debug|release) {
QMAKE_LFLAGS_RELEASE += /MAP
QMAKE_CFLAGS_RELEASE += /Zi
QMAKE_LFLAGS_RELEASE += /debug /opt:ref
}
LIBS += -lgdi32 -lgdiplus -ldbghelp -luser32 -ladvapi32
LIBS += -L$$PWD/../../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
2024-04-23 09:44:22 +00:00
# sane.dll
2024-04-23 09:44:22 +00:00
LIBS += -L$$PWD/../../../../release/win/$${MY_ARCH}/OEM/$${OEM_NAME}
}
2024-04-24 03:57:56 +00:00
INCLUDEPATH += $$PWD/../../../modules
INCLUDEPATH += $$PWD/../../../utility
2024-04-23 09:44:22 +00:00
INCLUDEPATH += $$PWD/../../../third_party/sqlite
INCLUDEPATH += $$PWD/../../../third_party/json
INCLUDEPATH += $$PWD/../../../../sdk/include
2024-04-23 09:44:22 +00:00
DESTDIR = $$PWD/../../build/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}
UI_DIR = $$PWD/../../temp/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}/$${TARGET}
MOC_DIR = $$PWD/../../temp/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}/$${TARGET}
OBJECTS_DIR = $$PWD/../../temp/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}/$${TARGET}
RCC_DIR = $$PWD/../../temp/$${MY_OS}/$${OEM_NAME}/$${MY_ARCH}/$${MY_CONFIGURE}/$${TARGET}
message(MY_OS: $$MY_OS)
message(MY_ARCH: $$MY_ARCH)
message(OEM_PREFIX: $$OEM_PREFIX)
message(OEM_PREFIX2: $$OEM_PREFIX2)
message(OEM_NAME: $$OEM_NAME)
message(MY_CONFIGURE: $$MY_CONFIGURE)
message(TARGET: $$TARGET)
message(DESTDIR: $$DESTDIR)
message(UI_DIR: $$UI_DIR)
message(MOC_DIR: $$MOC_DIR)
message(OBJECTS_DIR: $$OBJECTS_DIR)
message(RCC_DIR: $$RCC_DIR)
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
}
}
SOURCES += \
../../../app/scantool/dialog_add.cpp \
2024-04-26 09:27:47 +00:00
../../../app/scantool/dialog_scaninfo.cpp \
2024-04-24 03:57:56 +00:00
../../../app/scantool/dialog_writesettings.cpp \
../../../app/scantool/form_deviceconfig.cpp \
../../../app/scantool/form_saveparam.cpp \
2024-04-23 09:44:22 +00:00
../../../app/scantool/main.cpp \
../../../app/scantool/mainwindow.cpp \
../../../third_party/json/cJSON.c \
2024-04-24 03:57:56 +00:00
../../../third_party/sqlite/sqlite3.c \
../../../utility/HGString.cpp
2024-04-23 09:44:22 +00:00
HEADERS += \
../../../app/scantool/dialog_add.h \
2024-04-26 09:27:47 +00:00
../../../app/scantool/dialog_scaninfo.h \
2024-04-24 03:57:56 +00:00
../../../app/scantool/dialog_writesettings.h \
../../../app/scantool/form_deviceconfig.h \
../../../app/scantool/form_saveparam.h \
2024-04-23 09:44:22 +00:00
../../../app/scantool/mainwindow.h \ \
../../../third_party/json/cJSON.h \
2024-04-24 03:57:56 +00:00
../../../third_party/sqlite/sqlite3.h \
../../../utility/HGString.h
2024-04-23 09:44:22 +00:00
FORMS += \
../../../app/scantool/dialog_add.ui \
2024-04-26 09:27:47 +00:00
../../../app/scantool/dialog_scaninfo.ui \
2024-04-24 03:57:56 +00:00
../../../app/scantool/dialog_writesettings.ui \
../../../app/scantool/form_saveparam.ui \
2024-04-23 09:44:22 +00:00
../../../app/scantool/mainwindow.ui
RESOURCES += \
../../../app/scantool/ScanTool_resource.qrc