I recently bought to book C++ GUI Programming With Qt 3 and included with it was a CD-ROM. The CD contained the NonCommercial version of Qt 3 for Windows and the Borland compiler.

Well I installed Borland at F:\Borland\BCC55 and Qt at F:\Qt\3.2.1NonCommercial and the program folder Qt 3.2.1 Non-Commercial. When the installer tries to make the examples I get this error:
Qt is now configured for building. Just run make.
To reconfigure, run make clean and configure.
Could not start make process.
Make sure that your compiler tools are installed
and registered correctly in your PATH environment.
I made a file at F:\Borland\BCC55\bin\bcc32.cfg:
Qt Code:
  1. -I"F:\Borland\BCC55\include"
  2. -L"F:\Borland\BCC55\lib"
To copy to clipboard, switch view to plain text mode 

And F:\Borland\BCC55\bin\ilink32.cfg:
Qt Code:
  1. -L"F:\Borland\BCC55\lib"
To copy to clipboard, switch view to plain text mode 

But I still get that "error".

What exactly am I doing wrong?

Thank you!