mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 00:02:13 +00:00
fe4fbb5775
This is pretty dumb and extremely basic. The main purpose is demonstrating how to integrate mpv into the Qt GUI thread.
13 lines
196 B
Prolog
13 lines
196 B
Prolog
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = qtexample
|
|
TEMPLATE = app
|
|
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG = mpv
|
|
|
|
SOURCES += qtexample.cpp
|
|
HEADERS += qtexample.h
|