ppas.bat 524 B

123456789101112
  1. @echo off
  2. SET THEFILE=C:\Dev\Github\Indy\Indy\Lib\examples\idhl7\hl7_usage_sample.exe
  3. echo Linking %THEFILE%
  4. C:\lazarus\fpc\3.2.2\bin\x86_64-win64\ld.exe -b pei-x86-64 --gc-sections --subsystem windows --entry=_WinMainCRTStartup -o C:\Dev\Github\Indy\Indy\Lib\examples\idhl7\hl7_usage_sample.exe C:\Dev\Github\Indy\Indy\Lib\examples\idhl7\link6224.res
  5. if errorlevel 1 goto linkend
  6. goto end
  7. :asmend
  8. echo An error occurred while assembling %THEFILE%
  9. goto end
  10. :linkend
  11. echo An error occurred while linking %THEFILE%
  12. :end