Page 1 of 1

cobra -out:<name> <files>

PostPosted: Fri Nov 07, 2008 1:42 pm
by Charles
I've added an -out: option for controlling the name of the executable (or dll) produced the compiler. Previously, you had to do this via the -sharp-args: option or making sure that the first Cobra source file name you passed matched what you wanted. Examples:

cobra -out:texttool IOSupport.cobra TextTool.cobra

cobra -out:texttool.exe IOSupport.cobra TextTool.cobra

Adding the extension (.exe or .dll) is neither required nor problematic.

-Chuck