picpanel.pro 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. QT += core gui network sql
  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. RC_ICONS = appicon.ico
  33. RESOURCES += \
  34. image.qrc \
  35. qss.qrc \
  36. ttf.qrc