qtwebapp

How to create QtWebApp application

喜夏-厌秋 提交于 2019-12-11 19:37:10
问题 I'm trying to use QtWebApp to create a simple web app server, but it shows some error that i could not figure how to fix, any hint how to fix this? here's what i've done: = downloading QtWebApp-src.zip from http://stefanfrings.de/qtwebapp/ = compiling QtWebApp using qmake and make , completed successfully = create a new qwtest.pro , containing: QT += core network QT -= gui TARGET = qwtest CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp = create source file main.cpp ,