I am developing an application with Qt Creator and I'm getting this message
undefined reference to `_imp___ZN7QWidget14setWindowTitleE7QString'
Are there any modules or headers that I should include to remove this error message?
Edit:
The version I'm using is Qt 5.8.0 (MSVC 2015, 32 bit)
The .pro file:
QT       += core gui serialport multimedia widgets
TARGET = Prototype
TEMPLATE = app
SOURCES += main.cpp\
        mainwindow.cpp \
    patientselect.cpp
HEADERS  += mainwindow.h \
    patientselect.h
FORMS    += mainwindow.ui \
    patientselect.ui
RESOURCES += \
    resources.qrc
 
     
    