Project ERROR: Unknown module(s) in QT: websockets

I'm trying to run a simple client example using QTWebsockets using Qt Creator, already add the

QT       += websockets

But it throws this when i run build or qmake

:-1: error: Unknown module(s) in QT: websockets

I tried

QT       += core websockets

Then realized that since installed Qt Creator from the repositories it wasn't up to date, so I reinstalled it from the Qt website but the problem persisted, I then ran pkg-config --modversion QtCore and it returns 4.8.6, thing is, in the QT version tab of qt creator it shows 5.4.1 to GCC compiler which is the compiler I’m using, in /opt/Qt/5.4/gcc_64/lib there is the QT5WebSockets module even in the help tab are listed the QT5 modules but I can't use them.

Tried with SerialPort and it didn't work, tried with Opengl and it worked which means is a version problem but I can't seem to find how to solve.

Upvotes: 12

Views: 13141

Answers (3)

sonichy
sonichy

Reputation: 1478

sudo apt-get install libqt5websockets5-dev

Upvotes: 20

K.K.
K.K.

Reputation: 1

sudo zypper install libqt5-qtwebsockets-devel

Upvotes: 0

I solved it, the problem was that I just opened the project I made with qt4, when I tried to build it in the freshly installed qt creator the .pro.user file kept pointing to all qt4.

Solution, create a new project and add the source from the first, or change all the references from qt4 to qt5.

Upvotes: 1

Related Questions