1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-09-01T16:10:47
- #
- #-------------------------------------------------
- QT += core gui
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- CONFIG += c++11
- UI_DIR = obj/Gui
- MOC_DIR = obj/Moc
- OBJECTS_DIR = obj/Obj
- #�������ļ�ֱ�ӷŵ�Դ��Ŀ¼�µ�binĿ¼�£���dll�������˴�Ŀ¼�У����Խ������к��Ҳ���dll����
- #DESTDIR=$$PWD/bin/
- contains(QT_ARCH, i386) {
- message("32-bit")
- DESTDIR = $${PWD}/bin32
- } else {
- message("64-bit")
- DESTDIR = $${PWD}/bin64
- }
- QMAKE_CXXFLAGS += -std=c++11
- TARGET = VideoPlayer
- TEMPLATE = app
- #������Ƶ�������Ĵ���
- include(module/VideoPlayer/VideoPlayer.pri)
- #�������϶������Ĵ���
- include(module/DragAbleWidget/DragAbleWidget.pri)
- SOURCES += \
- src/Widget/SetVideoUrlDialog.cpp \
- src/Widget/mymessagebox_withTitle.cpp \
- src/main.cpp \
- src/AppConfig.cpp \
- src/Base/FunctionTransfer.cpp \
- src/MainWindow.cpp \
- src/Widget/ShowVideoWidget.cpp \
- src/Widget/VideoSlider.cpp
- HEADERS += \
- src/AppConfig.h \
- src/Base/FunctionTransfer.h \
- src/MainWindow.h \
- src/Widget/SetVideoUrlDialog.h \
- src/Widget/ShowVideoWidget.h \
- src/Widget/VideoSlider.h \
- src/Widget/mymessagebox_withTitle.h
- FORMS += \
- src/MainWindow.ui \
- src/Widget/SetVideoUrlDialog.ui \
- src/Widget/ShowVideoWidget.ui \
- src/Widget/mymessagebox_withTitle.ui
- RESOURCES += \
- resources/resources.qrc
- INCLUDEPATH += $$PWD/src
- win32:RC_FILE=$$PWD/resources/main.rc
|