VideoRecorder.pro 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2015-04-01T17:15:51
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = VideoRecorder
  9. TEMPLATE = app
  10. SOURCES += src/main.cpp\
  11. src/mainwindow.cpp \
  12. src/video/savevideofile.cpp \
  13. src/video/screenrecorder.cpp \
  14. src/widget/selectrect.cpp \
  15. src/widget/pushpoint.cpp \
  16. src/video/getvideothread.cpp
  17. HEADERS += src/mainwindow.h \
  18. src/video/savevideofile.h \
  19. src/video/screenrecorder.h \
  20. src/widget/selectrect.h \
  21. src/widget/pushpoint.h \
  22. src/video/getvideothread.h
  23. FORMS += src/mainwindow.ui
  24. INCLUDEPATH += $$PWD/lib/ffmpeg/include \
  25. $$PWD/lib/SDL2/include \
  26. $$PWD/src
  27. LIBS += $$PWD/lib/ffmpeg/lib/avcodec.lib \
  28. $$PWD/lib/ffmpeg/lib/avdevice.lib \
  29. $$PWD/lib/ffmpeg/lib/avfilter.lib \
  30. $$PWD/lib/ffmpeg/lib/avformat.lib \
  31. $$PWD/lib/ffmpeg/lib/avutil.lib \
  32. $$PWD/lib/ffmpeg/lib/postproc.lib \
  33. $$PWD/lib/ffmpeg/lib/swresample.lib \
  34. $$PWD/lib/ffmpeg/lib/swscale.lib \
  35. $$PWD/lib/SDL2/lib/x86/SDL2.lib