summaryrefslogtreecommitdiffstats
path: root/examples/customvideosurface/customvideoitem/customvideoitem.pro
blob: 92d1e8dbcf77e03e89efb5eab2eeeb8e1fb02faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TEMPLATE = app
TARGET = customvideoitem

QT += multimedia multimediawidgets widgets

contains(QT_CONFIG, opengl): QT += opengl

HEADERS   += videoplayer.h \
             videoitem.h

SOURCES   += main.cpp \
             videoplayer.cpp \
             videoitem.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/customvideoitem
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/customvideoitem

INSTALLS += target sources