The compiler (CL.EXE) can take multiple source files, but likes to generate all the OBJ files in the directory that it is invoked. I couldn't find the compiler flag to set an output directory but I did find one for an individual OBJ, but it can't take multiple sources.

Without having to specify each file to redirect the output and having lots of targets for NMAKE, is there an easy way to do it through CL?

link|improve this question
The /Fo option was made to do this. Use the IDE's C/C++, Command Line page to see what it does. – Hans Passant Oct 9 '11 at 21:27
I thought I already tried that. The MSDN made it look like it could only be used on one source file. Could you provide an example? – Sevado Oct 9 '11 at 21:29
You don't really need me to post a screenshot of the Command Line settings page for a project do you? Surely you can create you own IDE project? – Hans Passant Oct 9 '11 at 21:34
I don't have the IDE installed, only the Windows SDK. Can't you copy and paste the command line the IDE generates? – Sevado Oct 9 '11 at 21:55
Use the Express edition, it is free. – Hans Passant Oct 9 '11 at 22:02
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

It turns out the /Fo option actually works, but the directory you specify must end with a backslash. Thus

cl  /Fo.\obj\  -c foo.c fee.c

Works but cl /Fo.\obj -c ... would fail.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.