Skip to content
Snippets Groups Projects
Commit a92abf72 authored by rswindell's avatar rswindell
Browse files

If the path to the sbbs DLLs directory is passed on the command-line, that is

used as the source of the DLLs to create import libraries from. This should
solve the problem of sbbsctrl.exe (in sbbs_dev.zip) being linked with debug
DLLs, but release DLLs were included in the archive.
parent e9e61781
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,9 @@ if exist ..\bcc.win32.lib.release set dllsrc=..\bcc.win32.lib.release
if exist ..\bcc.win32.lib.debug set dllsrc=..\bcc.win32.lib.debug
if exist ..\msvc.win32.dll.release set dllsrc=..\msvc.win32.dll.release
if exist ..\msvc.win32.dll.debug set dllsrc=..\msvc.win32.dll.debug
if '%1'=='' goto implib
set dllsrc=%1
:implib
echo Creating import libraries from %dllsrc%
implib sbbs.lib %dllsrc%\sbbs.dll
implib mailsrvr.lib %dllsrc%\mailsrvr.dll
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment