AvPlayer.pri 665 B

1234567891011121314151617181920212223242526272829303132
  1. INCLUDEPATH += $$PWD/Sonic
  2. HEADERS += \
  3. $$PWD/Sonic/sonic.h \
  4. $$PWD/av_clock.h \
  5. $$PWD/av_decoder.h \
  6. $$PWD/av_player.h \
  7. $$PWD/avopenglwidget.h \
  8. $$PWD/avplayerwidget.h \
  9. $$PWD/ffmpeg_compat.h \
  10. $$PWD/threadpool.h \
  11. $$PWD/vframe.h
  12. SOURCES += \
  13. $$PWD/Sonic/sonic.c \
  14. $$PWD/av_decoder.cpp \
  15. $$PWD/av_player.cpp \
  16. $$PWD/avopenglwidget.cpp \
  17. $$PWD/avplayerwidget.cpp \
  18. $$PWD/threadpool.cpp
  19. win32 {
  20. INCLUDEPATH += $$PWD/SDL2-2.26.5/include
  21. LIBS += -L$$PWD/lib \
  22. -L$$PWD/SDL2-2.26.5/lib/x64 \
  23. -lSDL2 \
  24. -lSDL2test \
  25. -lDwmapi \
  26. -luser32
  27. }