MAKEFILE_GENERATOR variable not set as a result of parsing : Student_Information_Database.pro. Possibly qmake was not able to find files included using "include(..)" - enable qmake debugging to investigate more.
-
I have just installed qt 5.8 android version. Give
17:16:27: Running steps for project untitled...
17:16:27: Starting: "G:\Qt5.8.0\5.8\mingw53_32\bin\qmake.exe" "C:\Users\Hasibul Hasan Chowdh\Documents\untitled\untitled.pro" -spec win32-g++
MAKEFILE_GENERATOR variable not set as a result of parsing : untitled.pro. Possibly qmake was not able to find files included using "include(..)" - enable qmake debugging to investigate more.
17:16:27: The process "G:\Qt5.8.0\5.8\mingw53_32\bin\qmake.exe" exited with code 3.
Error while building/deploying project untitled (kit: Desktop Qt 5.8.0 MinGW 32bit)
When executing step "qmake"
17:16:27: Elapsed time: 00:00.this error when compile any project. I have qt 5.5 installed too. and it works fine. Where is the problem ? Need help guys;
My .pro file
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qtSOURCES += main.cpp
.cpp file
#include <iostream>using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello World!" << endl;
return 0;
} -
Remove spaces from your paths. That's probably no the reason for your error, but it can help later.