gui8000.pro 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. QT += core gui serialport network
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  4. CONFIG += force_debug_info
  5. # You can make your code fail to compile if it uses deprecated APIs.
  6. # In order to do so, uncomment the following line.
  7. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  8. SOURCES += \
  9. httpreq.cpp \
  10. main.cpp \
  11. maindlg.cpp\
  12. oambtsparam.cpp \
  13. oamupgrade.cpp \
  14. ps.cpp \
  15. sysconfig.cpp \
  16. uart.cpp\
  17. oambaseparam.cpp\
  18. oamconfigparam.cpp\
  19. oaminstallparam.cpp\
  20. oamnetworkparam.cpp\
  21. oamsyncparam.cpp
  22. HEADERS += \
  23. httpreq.h \
  24. includes.h \
  25. maindlg.h\
  26. oambtsparam.h \
  27. oamupgrade.h \
  28. pspublic.h\
  29. ps.h \
  30. sysconfig.h \
  31. uart.h\
  32. oambaseparam.h\
  33. oamconfigparam.h\
  34. oaminstallparam.h\
  35. oamnetworkparam.h\
  36. oamsyncparam.h
  37. FORMS += \
  38. maindlg.ui\
  39. oambaseparam.ui\
  40. oambtsparam.ui \
  41. oamconfigparam.ui\
  42. oaminstallparam.ui\
  43. oamnetworkparam.ui\
  44. oamsyncparam.ui \
  45. oamupgrade.ui \
  46. sysconfig.ui
  47. TRANSLATIONS += \
  48. gui8000_zh_CN.ts
  49. CONFIG += lrelease
  50. CONFIG += embed_translations
  51. # Default rules for deployment.
  52. qnx: target.path = /tmp/$${TARGET}/bin
  53. else: unix:!android: target.path = /opt/$${TARGET}/bin
  54. !isEmpty(target.path): INSTALLS += target