diff --git a/PayloadAPP.pro b/PayloadAPP.pro index 959c331..b6f2486 100644 --- a/PayloadAPP.pro +++ b/PayloadAPP.pro @@ -14,7 +14,7 @@ QMAKE_PROJECT_DEPTH = 0 # QMAKE_LFLAGS += /MANIFESTUAC:\"level=\'requireAdministrator\' uiAccess=\'false\'\" #程序版本 -VERSION = 1.1.0.0 +VERSION = 1.1.0.1 #程序版本 QMAKE_TARGET_COMPANY = "HTSDFP" @@ -64,11 +64,21 @@ LIBS += -L$$PWD/3rdparty/ffmpeg/lib \ -lavcodec -lavdevice -lavfilter -lavformat -lavutil -lpostproc \ -lswresample -lswscale -LIBS += -L$$PWD/3rdparty/QNotify/lib \ - -lQNotifyd -# win32 { -# LIBS += -luser32 -# } + +# Windows +win32 { + # LIBS += -luser32 + CONFIG(debug, debug|release){ +#debug + LIBS += -L$$PWD/3rdparty/QNotify/lib \ + -lQNotifyd + } + else:CONFIG(release, debug|release){ +#release + LIBS += -L$$PWD/3rdparty/QNotify/lib \ + -lQNotify + } +} include($$PWD/Src/HomePage/HomePage.pri) include($$PWD/Src/WebPage/WebPage.pri) diff --git a/global.cpp b/global.cpp index 8ebc371..367cd8e 100644 --- a/global.cpp +++ b/global.cpp @@ -2,7 +2,7 @@ global::global() {} -QString g_SoftwareVersion = "版本号:V1.1.0.0_20241127"; +QString g_SoftwareVersion = "版本号:V1.1.0.1_20241128"; NotifyManager *g_notifyManager = nullptr;