aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/httpserver/httpserver.pro
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-02-06 12:16:45 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-07 07:49:56 +0100
commit471fc7dc61b14b1e8eb21a36ba0f1362cd77caf7 (patch)
treeead6a574f316683c2d0da0ba44267a53b0688182 /tests/manual/httpserver/httpserver.pro
parentbde1e6718385c4c7c92bfda9ee4b52b99ff92214 (diff)
Add a test HTTP server as manual test.
Task-number: QTBUG-36573 Change-Id: Ib930f7c44db4170dfcff30e221c1cc7d94a13de5 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
Diffstat (limited to 'tests/manual/httpserver/httpserver.pro')
-rw-r--r--tests/manual/httpserver/httpserver.pro13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/httpserver/httpserver.pro b/tests/manual/httpserver/httpserver.pro
new file mode 100644
index 0000000000..2a6c32f1cf
--- /dev/null
+++ b/tests/manual/httpserver/httpserver.pro
@@ -0,0 +1,13 @@
+QT = core network
+
+TARGET = httpserver
+CONFIG += console
+CONFIG -= app_bundle
+
+TEMPLATE = app
+
+SERVER = $$PWD/../../auto/shared
+INCLUDEPATH += $$SERVER
+
+SOURCES += main.cpp $$SERVER/testhttpserver.cpp
+HEADERS += $$SERVER/testhttpserver.h