I have installed C++SDK that have Qt but when I try compiling a code linking QApplication it gives me the error:
Error QApplication: no such file or directory >
In Qt5 you should use QtWidgets instead of QtGui
QtWidgets
QtGui
#include // incorrect in QT5 #include // correct in QT5
Or