picpanel.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. QT += core gui network
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. main.cpp \
  9. widget.cpp
  10. HEADERS += \
  11. widget.h
  12. FORMS += \
  13. widget.ui
  14. INCLUDEPATH += $$PWD
  15. INCLUDEPATH += $$PWD/core_form
  16. INCLUDEPATH += $$PWD/core_ui
  17. INCLUDEPATH += $$PWD/core_support
  18. #include($$PWD/core_qui/core_qui.pri)
  19. include($$PWD/core_form/core_form.pri)
  20. include($$PWD/core_ui/core_ui.pri)
  21. include($$PWD/core_support/core_support.pri)
  22. CONFIG += QMAKE_CXXFLAGS_WARN_OFF
  23. # Default rules for deployment.
  24. qnx: target.path = /tmp/$${TARGET}/bin
  25. else: unix:!android: target.path = /opt/$${TARGET}/bin
  26. !isEmpty(target.path): INSTALLS += target
  27. #OBJECTS_DIR = $$PWD/build/obj
  28. #MOC_DIR = $$PWD/build/moc
  29. #RCC_DIR = $$PWD/build/rcc
  30. #UI_DIR = $$PWD/build/ui
  31. #DESTDIR = $$PWD/build/bin
  32. RESOURCES += \
  33. image.qrc \
  34. qss.qrc \
  35. ttf.qrc