Hi,
I've been learning C++ and I've just written my first multi-file program. I have three files:
golf.h (contains the header)
golf.cpp (contains the function definitions)
golfmain.cpp (contains the main() code)
Previously, for single file programs, I have been using the command line command:
cl /clr [programname].cpp
to compile things. Could anyone tell me (or guide me to the place where I can find out) how to compile multi-file programs Thanks!
Chris

compile programs with multiple files
daverage
Sergio Ordine
cl /clr golf.cpp golfmain.cpp
or
cl /clr *.cpp