With the Compiler switch /EXE you can give the resulting path and filename of the EXE file. With /DLL this does not work!
Workaround:
Code: Select all
PBCompiler "SourceFile" /DLL /EXE "path\to\dll_file.dll"
But it would be more clear to use:
Code: Select all
PBCompiler "SourceFile" /DLL "path\to\dll_file.dll"