123456789101112131415161718192021222324252627282930313233 |
- QT += core gui
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- CONFIG += c++17
- SOURCES += \
- main.cpp \
- mainwindow.cpp \
- playimage.cpp \
- HEADERS += \
- mainwindow.h \
- playimage.h \
- FORMS += \
- mainwindow.ui
- include(./VideoPlay/VideoPlay.pri)
- INCLUDEPATH += ./VideoPlay
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- DISTFILES +=
|