hksdktest.pro 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2023-02-17T16:49:54
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. QT += serialport
  8. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  9. TARGET = hksdktest
  10. TEMPLATE = app
  11. # The following define makes your compiler emit warnings if you use
  12. # any feature of Qt which has been marked as deprecated (the exact warnings
  13. # depend on your compiler). Please consult the documentation of the
  14. # deprecated API in order to know how to port your code away from it.
  15. DEFINES += QT_DEPRECATED_WARNINGS
  16. # You can also make your code fail to compile if you use deprecated APIs.
  17. # In order to do so, uncomment the following line.
  18. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  19. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  20. CONFIG += c++11
  21. SOURCES += \
  22. main.cpp \
  23. dialog.cpp \
  24. serialport/serailport.cpp \
  25. hkcamera/hkcamera.cpp \
  26. infoserialize/infoserialize.cpp \
  27. mythread.cpp
  28. HEADERS += \
  29. dialog.h \
  30. include/DataType.h \
  31. include/DecodeCardSdk.h \
  32. include/HCNetSDK.h \
  33. include/plaympeg4.h \
  34. serialport/serailport.h \
  35. hkcamera/hkcamera.h \
  36. infoserialize/infoserialize.h \
  37. mythread.h
  38. FORMS += \
  39. dialog.ui
  40. # Default rules for deployment.
  41. qnx: target.path = /tmp/$${TARGET}/bin
  42. else: unix:!android: target.path = /opt/$${TARGET}/bin
  43. !isEmpty(target.path): INSTALLS += target
  44. LIBS += $$PWD/lib/GdiPlus.lib
  45. LIBS += $$PWD/lib/HCCore.lib
  46. LIBS += $$PWD/lib/HCNetSDK.lib
  47. LIBS += $$PWD/lib/PlayCtrl.lib
  48. INCLUDEPATH += $$PWD/include
  49. DEPENDPATH += $$PWD/include
  50. QT += network