Quote Originally Posted by Seth
I thought from the command line I could run the program? That's how its described in the new QT book instead I got 'hello' is not recognized as... . Any thoughts?
"hello" is not recognized as an executable because the command line current directory isn't the same as the directory in which your program is located... There are two ways to run your program from command line :
Qt Code:
  1. cd release
  2. hello
To copy to clipboard, switch view to plain text mode 
or :
Qt Code:
  1. release\hello
To copy to clipboard, switch view to plain text mode 

BTW QT means Quick Time... I suppose you're referring to Qt...