PBCompiler /DLL "dll file name.dll"
Posted: Thu Mar 23, 2006 11:07 am
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:
This seems to work!
But it would be more clear to use:
cu, helpy
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"