VideoPlayer.pro 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. CONFIG += c++11
  9. UI_DIR = obj/Gui
  10. MOC_DIR = obj/Moc
  11. OBJECTS_DIR = obj/Obj
  12. #�������ļ�ֱ�ӷŵ�Դ��Ŀ¼�µ�binĿ¼�£���dll�������˴�Ŀ¼�У����Խ������к��Ҳ���dll����
  13. #DESTDIR=$$PWD/bin/
  14. contains(QT_ARCH, i386) {
  15. message("32-bit")
  16. DESTDIR = $${PWD}/bin32
  17. } else {
  18. message("64-bit")
  19. DESTDIR = $${PWD}/bin64
  20. }
  21. QMAKE_CXXFLAGS += -std=c++11
  22. TARGET = VideoPlayer
  23. TEMPLATE = app
  24. #������Ƶ�������Ĵ���
  25. include(module/VideoPlayer/VideoPlayer.pri)
  26. #�������϶������Ĵ���
  27. include(module/DragAbleWidget/DragAbleWidget.pri)
  28. SOURCES += \
  29. src/Widget/SetVideoUrlDialog.cpp \
  30. src/Widget/mymessagebox_withTitle.cpp \
  31. src/main.cpp \
  32. src/AppConfig.cpp \
  33. src/Base/FunctionTransfer.cpp \
  34. src/MainWindow.cpp \
  35. src/Widget/ShowVideoWidget.cpp \
  36. src/Widget/VideoSlider.cpp
  37. HEADERS += \
  38. src/AppConfig.h \
  39. src/Base/FunctionTransfer.h \
  40. src/MainWindow.h \
  41. src/Widget/SetVideoUrlDialog.h \
  42. src/Widget/ShowVideoWidget.h \
  43. src/Widget/VideoSlider.h \
  44. src/Widget/mymessagebox_withTitle.h
  45. FORMS += \
  46. src/MainWindow.ui \
  47. src/Widget/SetVideoUrlDialog.ui \
  48. src/Widget/ShowVideoWidget.ui \
  49. src/Widget/mymessagebox_withTitle.ui
  50. RESOURCES += \
  51. resources/resources.qrc
  52. INCLUDEPATH += $$PWD/src
  53. win32:RC_FILE=$$PWD/resources/main.rc