one-step build for hello.c

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I put VC6 in explorer 'send to'. When I send a C language console app to VC6,
just choosing default answers results in a working executable.

What is a straight-forward way to build a simple console app with later VC
editions?
 
use command line to build a single file, the following is a sample command.

cl -GX basic-client.cpp main.cpp ws-util.cpp wsock32.lib
 
Thanks. But the VC6 SendTo method does a gui build,
with the code ready to edit and single-step in the
debugger. That is what I would prefer.
 
Back
Top