Hi Viktor,


> Are these MSVC QT libs *static ones*, or *implibs* generated by Harbour?
> 

I use, *implibs* generated by Harbour.

This is my BAT

[BAT]

@echo off

call envhrba.bat MSVC      <-- Here i Configure my ambient to harbour and
MSVC

@if exist %1.lib del %1.lib > nul
@if exist *.exp  del *.exp > nul
@if exist *.def  del *.def > nul

if "%1" == "" goto help

if not exist %1.dll goto notfound

rem pexports.exe %1 > _temp_.def 
impdef.exe %2 %1.def %1.dll

if errorlevel 1 goto errodef

lib /def:%1.def

if errorlevel 1 echo Error creating .LIB...

goto fim

:help
echo Usage: dll2lib input.dll [output.lib]
goto fim

:notfound
echo ERROR: File not found "%1"
goto fim

:errodef
echo Error extracting .DEF...
goto fim

:fim

rem @if exist *.exp del *.exp > nul
rem @if exist *.def del *.def > nul

call envhrbd.bat

[BATEND]

Best Regards,

Rossine.

-- 
View this message in context: 
http://www.nabble.com/Work-with-HBQT-tp23901290p23947037.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to