Hi all!
I tried to build QT5 from git, everything is OK, but the following error appears whet I trid to build my QT application:
Unknown module(s) in QT: webkitwidgets
My configure line:
configure -static -platform win32-msvc2010 -openssl -I “C:\OpenSSL-Win64\include” -L “C:\OpenSSL-Win64\lib\VC\static” OPENSSL_LIBS=”-LC:\\OpenSSL-Win64\\lib” -no-vcproj -opengl desktop -nomake examples -nomake demos
My *.pro file:
#TEMPLATE = app
QT += network widgets webkitwidgets
HEADERS = mainwindow.h
FORMS = mainwindow.ui
RESOURCES = manager.qrc
RC_FILE = app.rc
SOURCES = main.cpp \
mainwindow.cpp
INCLUDEPATH += D:\QT5\gsoap-2.8\gsoap
INCLUDEPATH += D:\QT5\openssl-1.0.1e\include
target.path = D:\QT\RM
INSTALLS += target
#CONFIG += release
#CONFIG += static
#CONFIG -= embed_manifest_dll
CONFIG += openssl
OTHER_FILES += \
RMAuthBinding.nsmap
#LIBS += libeay32.lib
QMAKE_CXXFLAGS += -DWITH_OPENSSL
#QMAKE_CXXFLAGS += -DWITH_NONAMESPACES
↧