Advertisement
Guest User

Untitled

a guest
May 19th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1.  
  2. QT += core gui
  3.  
  4. TARGET = openAviToGif
  5. TEMPLATE = app
  6.  
  7. SOURCES += main.cpp\
  8. MainWindow.cpp \
  9. FileListWidget.cpp \
  10. ReadThread.cpp \
  11. ConvertSettings.cpp \
  12. WorkThread.cpp \
  13. WorkSettings.cpp \
  14. AboutDialog.cpp
  15.  
  16. HEADERS += MainWindow.h \
  17. openAviToGif.h \
  18. FileListWidget.h \
  19. ReadThread.h \
  20. ConvertSettings.h \
  21. WorkThread.h \
  22. WorkSettings.h \
  23. AboutDialog.h \
  24.  
  25. DEFINES += __STDC_CONSTANT_MACROS
  26.  
  27. INCLUDEPATH += ./ffmpeg-dev/include
  28. DEPENDPATH += ./ffmpeg-dev/include
  29.  
  30. INCLUDEPATH += ./giflib-4.1.4-1-lib/include
  31. DEPENDPATH += ./giflib-4.1.4-1-lib/include
  32.  
  33. INCLUDEPATH += ./openCVx86/include
  34. DEPENDPATH += ./openCVx86/include
  35.  
  36. LIBS += -swscale -avdevice -avformat -avcodec -avutil
  37.  
  38. LIBS += -LD:./giflib-4.1.4-1-lib/lib/ -giflib
  39.  
  40. LIBS += -LD:./openCVx86/lib -opencv_core231
  41.  
  42. RESOURCES += \
  43. res.qrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement