Menu

[r7]: / create-package.cmd  Maximize  Restore  History

Download this file

22 lines (15 with data), 356 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
set PATH=C:\lazarus;C:\Program Files\7-Zip;%PATH%
set archive_name=fbprofiler.zip
lazbuild fbprofiler.lpr
if errorlevel 1 goto fail
lazbuild fbprofilercmd.lpr
if errorlevel 1 goto fail
del /q %archive_name%
7z a %archive_name% @create-package.lst
if errorlevel 1 goto fail
echo OK
exit /b 0
:fail
echo FAILED
exit /b 1
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.