Page 1 of 1

How do i set up tools to run an exe of the C file im working

Posted: Mon Jan 15, 2001 3:04 pm
by kookoo
I know how to set up the tools to comile a C application
But how do i make a generic Tool To run the .exe of the C file i'm working on?
Thanks in advance

Re: How do i set up tools to run an exe of the C file im wor

Posted: Mon Jan 15, 2001 4:03 pm
by Jörg Frech
Hi kookoo,

the answer (for WinNT) is:
Command: <windir>\system32\cmd.exe
Parameters: /c@for %i in ($File) do @%~dpni
For an explanation of the command line type "for /?" at a command prompt.

HTH,
Jörg

thanks! much appreciated

Posted: Mon Jan 15, 2001 10:51 pm
by kookoo
.