summaryrefslogtreecommitdiffstats
path: root/lib/widgets/widgets.pro
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets/widgets.pro')
-rw-r--r--lib/widgets/widgets.pro33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/widgets/widgets.pro b/lib/widgets/widgets.pro
new file mode 100644
index 000000000..351264d57
--- /dev/null
+++ b/lib/widgets/widgets.pro
@@ -0,0 +1,33 @@
+# Use Qt5 module system
+load(qt_build_config)
+
+TEMPLATE = lib
+TARGET = QtWebEngineWidgets
+
+MODULE = webenginewidgets
+
+# For our export macros
+DEFINES += QT_BUILD_WEBENGINEWIDGETS_LIB
+
+QT += widgets
+
+# FIXME: all this should eventually be turned into QT += webenginecore
+macx:LIBPATH = $$getOutDir()/$$getConfigDir()
+else:LIBPATH = $$getOutDir()/$$getConfigDir()/lib
+LIBS += -L$$LIBPATH -lQt5WebEngineCore
+QMAKE_RPATHDIR += $$LIBPATH
+
+DESTDIR = $$LIBPATH
+
+INCLUDEPATH += ../
+
+SOURCES = \
+ Api/qwebcontentsview.cpp\
+ render_widget_host_view_qt_delegate_widget.cpp
+
+HEADERS = \
+ Api/qwebcontentsview.h \
+ Api/qwebcontentsview_p.h \
+ render_widget_host_view_qt_delegate_widget.h
+
+load(qt_module)