VideoRecorder.pro 900 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-09-01T16:10:47
  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/audio/AACEncoder.cpp \
  13. src/audio/getaudiothread.cpp
  14. HEADERS += \
  15. src/mainwindow.h \
  16. src/audio/AACEncoder.h \
  17. src/audio/getaudiothread.h
  18. FORMS += \
  19. src/mainwindow.ui
  20. INCLUDEPATH += $$PWD/ffmpeg/include \
  21. $$PWD/src
  22. LIBS += $$PWD/ffmpeg/lib/avcodec.lib \
  23. $$PWD/ffmpeg/lib/avdevice.lib \
  24. $$PWD/ffmpeg/lib/avfilter.lib \
  25. $$PWD/ffmpeg/lib/avformat.lib \
  26. $$PWD/ffmpeg/lib/avutil.lib \
  27. $$PWD/ffmpeg/lib/postproc.lib \
  28. $$PWD/ffmpeg/lib/swresample.lib \
  29. $$PWD/ffmpeg/lib/swscale.lib