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