I can only compile my source code if the command prompt is pointed to the compiler directory or the source code directory. Basically, I can get the compiler to compile from either:
C:\Borland\BCC55\Bin>
C:\bcc32>
or
C:\01proj\hworld.cpp (location of source code)
My source code is
// C++ code template
#include <iostream.h>
void main()
{
cout << "Hello, World!" << endl;
}
I have created the bcc32.cfg and ilink32.cfg files and placed them in the \bin folder in the Borland directory. I have also appended the path in the system variable with C:\borland\bcc55\bin
I should be able to compile from my default command prompt (C:\Users\Allen>) and not have to do so with the command prompt only pointed at the compiler or the source code directory.
Any ideas anyone?
Thanks--