c++ - Qt error: LNK1181: cannot open input file 'debug\main.obj' -


qt creator working well, shows problem error: lnk1181: cannot open input file 'debug\main.obj'.
problem shows type of application either gui or console.
i've uninstall qt, , install again, problem still exists.
did not in qt creator settings, left default settings.

the following application simple console application occur same problem in it.

//main.cpp #include <qcoreapplication>  int main(int argc, char *argv[]){     qcoreapplication a(argc, argv);      return a.exec(); } 

note: i'm using qt 5.1.1 windows 32-bit (vs 2010, opengl).

this problem occurs if path of project (name of folder) contains white space.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -