I want to migrate a rather complex application fro HMG to HMG Minigui. I copied all PRG etc. and made a compile.bat file.
Now having changed all the necessary I have some link errors:
Code: Select all
C:\minigui\newproj>call ..\batch\compile.bat newproj /l hbsqlit3 /l sqlite3 /lg winreport /l hbzebra
Harbour 3.2.0dev (r2104281802)
Copyright (c) 1999-2021, https://harbour.github.io/
Compiling 'newproj.prg'...
Lines 40386, Functions/Procedures 138
Generating C source output to 'newproj.c'... Done.
newproj.c:
Borland Resource Compiler Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved.
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unresolved external '_HB_FUN_TMYSQLSERVER' referenced from C:\MINIGUI\newproj\newproj.OBJ
Error: Unresolved external '_HB_FUN_READ_INI' referenced from C:\MINIGUI\newproj\newproj.OBJ
Error: Unresolved external '_HB_FUN_WK_PRES1' referenced from C:\MINIGUI\newproj\newproj.OBJ
Error: Unresolved external '_HB_FUN_WK_PERS1' referenced from C:\MINIGUI\newproj\newproj.OBJ
etc. etc. etc.
This is my compile.bat which I copied somewhere from demo or whatever.
Code: Select all
call ..\..\..\batch\compile.bat demo %1 /l hbsqlit3 /l sqlite3 /lg winreport /l hbzebra %2 %3 %4 %5 %6 %7 %8 %9
My knowledge of BAT has reduced to none....
Could some please lead me!
Thanks, Serge