blob: 76b46f13a709ebe7b2a47e92a43639d74f48f072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
TARGET = webkitqmlplugin
TARGETPATH = $$[QT_INSTALL_IMPORTS]/org/webkit
include(../qimportbase.pri)
QT += webkit declarative
DEFINES += WEBKITQMLPLUGIN_EXPORTS
SOURCES += qdeclarativewebview.cpp plugin.cpp
HEADERS += qdeclarativewebview_p.h \
qdeclarativewebview_p_p.h \
webkitqmlplugin_export.h
QTDIR_build:DESTDIR = $$TARGETPATH
target.path = $$TARGETPATH
qmldir.files += $$QT_BUILD_TREE/imports/org/webkit/qmldir
qmldir.path += $$TARGETPATH
INSTALLS += target qmldir
|