Armored Autohotkey executable builder
0.9.5b
INTRO USAGE OPTIONS INTERFACE RESOURCES VERSIONINFO EXECUTION OUTRO
PRE BUILD EXECUTION

After HotkeyCamo has finished preparing the temporary build files but before moving on to the build phase, you can execute one or more programs to perform additional tasks associated with building your executable.

This functionality is activated by adding the section header [HKC_PBE] to the tail of your config file. Each line has  the standard ini format of ' key = value ', however the value itself is delimited ' ` '  into four  separate elements.
 
    [HKC_PBE]
    sDescription = sProgram ` sCommandline ` sWorkingdir ` nExitcode

    []

sDescription Something short and simple to display in the log, This field can be empty if you wish. *New*
sProgram The full / relative path to or the name of the file to be executed.
sCommandline Arguments to pass to the program, can be empty if not required.
sWorkingdir The path you need the program to execute under, If left blank the default working directory (script dir) will be used.
nExitcode The value returned by the program when it closes that represents it has succeeded in its task, HkC will abort the build if this is not returned.

If you don't know the exitcode(s) for your program then find out, if the program does not use them then just put 0.

When this field is blank zero is assumed.
*New*

Example : Ahk embedded
  /*
    [HKC_PBE]
    RC2RES = @CDP>BIN\RES\GoRC.exe ` My.rc ` @SD> ` 0

    RES2BIN = @CDP>ResHack.exe ` -addoverwrite "@BIN>","@BIN>",My.res ` @SD> ` 0
    []
  */