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

Debug DLL dirs have higher precedence than release dirs.

Echo directory where we're generating the import libraries for.
parent 4adc7552
No related branches found
No related tags found
No related merge requests found
@echo off
setlocal
if exist ..\bcc.win32.dll.debug set dllsrc=..\bcc.win32.dll.debug
if exist ..\bcc.win32.dll.release set dllsrc=..\bcc.win32.dll.release
if exist ..\msvc.win32.dll.debug set dllsrc=..\msvc.win32.dll.debug
if exist ..\bcc.win32.dll.debug set dllsrc=..\bcc.win32.dll.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
echo Creating import libraries from %dllsrc%
implib sbbs.lib %dllsrc%\sbbs.dll
implib mailsrvr.lib %dllsrc%\mailsrvr.dll
implib ftpsrvr.lib %dllsrc%\ftpsrvr.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