VedioClient.pro 743 B

123456789101112131415161718192021222324252627282930313233
  1. QT += core gui
  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. mainwindow.cpp \
  10. playimage.cpp \
  11. HEADERS += \
  12. mainwindow.h \
  13. playimage.h \
  14. FORMS += \
  15. mainwindow.ui
  16. # ffmpeg读取视频图像模块
  17. include(./VideoPlay/VideoPlay.pri)
  18. INCLUDEPATH += ./VideoPlay
  19. # Default rules for deployment.
  20. qnx: target.path = /tmp/$${TARGET}/bin
  21. else: unix:!android: target.path = /opt/$${TARGET}/bin
  22. !isEmpty(target.path): INSTALLS += target
  23. DISTFILES +=