VideoRecorder.pro 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2015-01-06T22:20:29
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  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/savevideofile.cpp \
  13. src/screenrecorder.cpp
  14. HEADERS += src/mainwindow.h \
  15. src/savevideofile.h \
  16. src/screenrecorder.h
  17. FORMS += src/mainwindow.ui
  18. INCLUDEPATH += $$PWD/lib/ffmpeg/include \
  19. $$PWD/lib/SDL2/include \
  20. $$PWD/src
  21. LIBS += $$PWD/lib/ffmpeg/lib/avcodec.lib \
  22. $$PWD/lib/ffmpeg/lib/avdevice.lib \
  23. $$PWD/lib/ffmpeg/lib/avfilter.lib \
  24. $$PWD/lib/ffmpeg/lib/avformat.lib \
  25. $$PWD/lib/ffmpeg/lib/avutil.lib \
  26. $$PWD/lib/ffmpeg/lib/postproc.lib \
  27. $$PWD/lib/ffmpeg/lib/swresample.lib \
  28. $$PWD/lib/ffmpeg/lib/swscale.lib \
  29. $$PWD/lib/SDL2/lib/x86/SDL2.lib
  30. LIBS += -lwinmm
  31. LIBS += -lws2_32