Stan Fieuws
Stan Fieuws

Reputation: 159

Qt, Error when executing step "Make"

I'm trying to get the hang of Qt for my C++ applications. I tried a quick test project, but when I tried to run it I got this error.

screenshot of error

I found a post on Stack Overflow about this error, but the solutions they gave didn't work for me.

Upvotes: 0

Views: 1144

Answers (1)

Paul
Paul

Reputation: 13238

'C:\Program' is not recognized as an internal or external command

tells you that it splits C:\Program Files (x86)\Qt\5.0\mingw53_32\bin\qmake.exe into several strings. Install your Qt into a folder without spaces in its name.

Upvotes: 1

Related Questions