blob: 91a946665571612489189cf3e1ef6cf4d3c38ed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
TARGET = resourceqt
QT += multimedia-private
CONFIG += link_pkgconfig
PKGCONFIG += libresourceqt5
INCLUDEPATH += $$PWD \
$${SOURCE_DIR}/src/multimedia
HEADERS += \
$$PWD/resourcepolicyplugin.h \
$$PWD/resourcepolicyimpl.h \
$$PWD/resourcepolicyint.h
SOURCES += \
$$PWD/resourcepolicyplugin.cpp \
$$PWD/resourcepolicyimpl.cpp \
$$PWD/resourcepolicyint.cpp
PLUGIN_TYPE = resourcepolicy
PLUGIN_CLASS_NAME = ResourceQtPolicyPlugin
load(qt_plugin)
|