summaryrefslogtreecommitdiffstats
path: root/tests/manual/dumpcpp/dumpcpp.pro
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-04-06 12:26:47 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-04-08 07:37:48 +0200
commitcdd58e2c155063f9b52b69a47f45c2430214e3a4 (patch)
tree903989713351c3bcf54a1298ac62afd036439640 /tests/manual/dumpcpp/dumpcpp.pro
parent8ca337213f1e79abca96a70a17f771f322c58319 (diff)
Add a manual test for dumpcppv5.15.0-beta4
Let it generate code for the WebBrowser and display the meta object. Factor out useful code from axviewer. Change-Id: Ib250c749459836e2145f83f4f68fa0caee2a2ad9 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/manual/dumpcpp/dumpcpp.pro')
-rw-r--r--tests/manual/dumpcpp/dumpcpp.pro13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/dumpcpp/dumpcpp.pro b/tests/manual/dumpcpp/dumpcpp.pro
new file mode 100644
index 0000000..6f116c0
--- /dev/null
+++ b/tests/manual/dumpcpp/dumpcpp.pro
@@ -0,0 +1,13 @@
+TEMPLATE=app
+CONFIG += QMAKE_LFLAGS_CONSOLE
+QT += widgets axcontainer testlib
+
+SOURCES += main.cpp
+include(../shared/shared.pri)
+
+# Assume Web Browser type library is available in all windows installations
+TYPELIBS = $$(SystemRoot)\\system32\\ieframe.dll
+
+!exists($$TYPELIBS) {
+ message("Web Browser type library for test not found!")
+}