1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- QT += core gui network
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- CONFIG += c++17
- # You can make your code fail to compile if it uses deprecated APIs.
- # In order to do so, uncomment the following line.
- #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
- SOURCES += \
- main.cpp \
- widget.cpp
- HEADERS += \
- widget.h
- FORMS += \
- widget.ui
- INCLUDEPATH += $$PWD
- INCLUDEPATH += $$PWD/core_form
- INCLUDEPATH += $$PWD/core_ui
- INCLUDEPATH += $$PWD/core_support
- #include($$PWD/core_qui/core_qui.pri)
- include($$PWD/core_form/core_form.pri)
- include($$PWD/core_ui/core_ui.pri)
- include($$PWD/core_support/core_support.pri)
- CONFIG += QMAKE_CXXFLAGS_WARN_OFF
- # Default rules for deployment.
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- !isEmpty(target.path): INSTALLS += target
- #OBJECTS_DIR = $$PWD/build/obj
- #MOC_DIR = $$PWD/build/moc
- #RCC_DIR = $$PWD/build/rcc
- #UI_DIR = $$PWD/build/ui
- #DESTDIR = $$PWD/build/bin
- RESOURCES += \
- image.qrc \
- qss.qrc \
- ttf.qrc
|