PDA

View Full Version : QtWebEngineProcess shared libraries



tkd-alex
5th May 2016, 15:54
Hi to everyone I'm developing an application with QT.
This is the setup of compiler and qmake:

11924 11925

If I Run qmake (Build -> run qmake) and Build All the operation will end without any problem and application work at the same (zero problem).
This is a screen of my application.

11926

But if I go on debug or release folder of my application and run ./myapp (by terminal) I get this error


/home/alessandro/Qt/5.6/gcc_64/libexec/QtWebEngineProcess: error while loading shared libraries: libQt5WebEngineCore.so.5: cannot open shared object file: No such file or directory
11927

This is the code of my .pro file:


#-------------------------------------------------
#
# Project created by QtCreator 2016-03-15T23:48:51
#
#-------------------------------------------------

QT += core gui webengine webenginewidgets webenginecore

# greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = SMART-GUI-V2
TEMPLATE = app

SOURCES += main.cpp\
mainwindow.cpp \
selectalgwindow.cpp \
addalgo.cpp \
setupwindow.cpp

HEADERS += mainwindow.h \
selectalgwindow.h \
addalgo.h \
setupwindow.h \

FORMS += mainwindow.ui \
selectalgwindow.ui \
addalgo.ui \
setupwindow.ui

RESOURCES += \
chartfile.qrc \
icon.qrc
Why the compiler does not even compile libraries ?
Can someone help me? Sorry for my bad english.