Hi,

I am using Qt 4.8.1 in Win 7, and have not installed VS.

when I add a "Plain C++ project" in Qt creator and set a breakpoint, the debugger is not stopping at the breakpoint.
I set build and run settings in Debug mode. but when I start debugging the application runs successfully but failed to stop at breakpoint.

The code is very simple like...


Qt Code:
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << "Hello World!" << endl;
  8. return 0;
  9. }
To copy to clipboard, switch view to plain text mode 

I set a breakpoint at 'cout' statement. but its not hitting the breakpoint.
what else I have to do to debug the application ?