Page 1 of 1

PBCompiler /DLL "dll file name.dll"

Posted: Thu Mar 23, 2006 11:07 am
by helpy
Hello,

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"
This seems to work!


But it would be more clear to use:

Code: Select all

PBCompiler "SourceFile" /DLL "path\to\dll_file.dll"
cu, helpy