gui8000.pro 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. oamsynctimer.cpp \
  14. oamupgrade.cpp \
  15. ps.cpp \
  16. sysconfig.cpp \
  17. uart.cpp\
  18. oambaseparam.cpp\
  19. oamconfigparam.cpp\
  20. oaminstallparam.cpp\
  21. oamnetworkparam.cpp\
  22. oamsyncparam.cpp
  23. HEADERS += \
  24. httpreq.h \
  25. includes.h \
  26. maindlg.h\
  27. oambtsparam.h \
  28. oamsynctimer.h \
  29. oamupgrade.h \
  30. pspublic.h\
  31. ps.h \
  32. sysconfig.h \
  33. uart.h\
  34. oambaseparam.h\
  35. oamconfigparam.h\
  36. oaminstallparam.h\
  37. oamnetworkparam.h\
  38. oamsyncparam.h
  39. FORMS += \
  40. maindlg.ui\
  41. oambaseparam.ui\
  42. oambtsparam.ui \
  43. oamconfigparam.ui\
  44. oaminstallparam.ui\
  45. oamnetworkparam.ui\
  46. oamsyncparam.ui \
  47. oamsynctimer.ui \
  48. oamupgrade.ui \
  49. sysconfig.ui
  50. TRANSLATIONS += \
  51. gui8000_zh_CN.ts
  52. CONFIG += lrelease
  53. CONFIG += embed_translations
  54. # Default rules for deployment.
  55. qnx: target.path = /tmp/$${TARGET}/bin
  56. else: unix:!android: target.path = /opt/$${TARGET}/bin
  57. !isEmpty(target.path): INSTALLS += target