#------------------------------------------------- # # Project created by QtCreator 2022-06-08T08:38:04 # #------------------------------------------------- QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets TARGET = Samplemosquitto TEMPLATE = app # The following define makes your compiler emit warnings if you use # any feature of Qt which has been marked as 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 you use 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 DESTDIR=$$PWD/../bin INCLUDEPATH += $$PWD/../../Common/ \ $$PWD/../../Common/include/ \ $$PWD/../../Common/include/mosquitto/ SOURCES += \ main.cpp \ mainwindow.cpp \ CustomSlider.cpp \ frameless_helper.cpp \ frmmessagebox.cpp HEADERS += \ mainwindow.h \ CustomSlider.h \ frameless_helper.h \ frmmessagebox.h \ commonhelper.h FORMS += \ mainwindow.ui \ frmmessagebox.ui RESOURCES += \ images.qrc win32{ contains(DEFINES,WIN64){ LIBS += -L$$PWD/../../Common/lib/x64/mosquitto/ -lmosquitto LIBS += -L$$PWD/../../Common/lib/x64/mosquitto/ -lmosquittopp }else{ LIBS += -L$$PWD/../../Common/lib/x86/mosquitto/ -lmosquitto LIBS += -L$$PWD/../../Common/lib/x86/mosquitto/ -lmosquittopp } } #文件采用utf-8编码 msvc { QMAKE_CFLAGS += /utf-8 QMAKE_CXXFLAGS += /utf-8 } # exe所带图标 RC_ICONS = skin/ico/Guide.ico