mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 12:12:49 +02:00
98 lines
2.8 KiB
Batchfile
98 lines
2.8 KiB
Batchfile
:: This setting need to change for every build
|
|
SET LAZVERSION=0.9.12
|
|
|
|
:: These settings are dependent on the configuration of the build machine
|
|
:: Path to the Inno Setup Compiler
|
|
SET ISCC="C:\Program Files\Inno Setup 5\iscc.exe"
|
|
|
|
:: Path to the fpc sources checked out of svn
|
|
SET FPCSVNDIR=C:\lazarus\source\fpc\fpcbuild-2.0.2\fpcsrc
|
|
|
|
:: Path to the lazarus sources checked out of cvs
|
|
SET LAZSVNDIR=c:\lazarus\source\lazarus-0.9.12
|
|
|
|
:: Path to fpc 2.0.2 compiler
|
|
SET RELEASE_PPC=c:\fpc\2.0.2\bin\i386-win32\ppc386.exe
|
|
|
|
:: Path to the directory containing some third party utilities used by fpc
|
|
:: it will be copied completely to the pp\bin\win32 directory
|
|
:: fpc supplies them in asldw32.zip, makew32.zip
|
|
SET FPCBINDIR=c:\lazarus\source\fpcbindir
|
|
|
|
:: Path to the directory containing the mingw gdb debugger installation
|
|
:: it should have the debugger with the name gdb.exe in its bin subdirectory
|
|
SET GDBDIR=c:\lazarus\source\mingw
|
|
|
|
:: Path to build directory.
|
|
:: In this directory an image of the installation will be built.
|
|
SET BUILDDIR=c:\temp\lazbuild
|
|
|
|
:: Path to the svn executable
|
|
SET SVN="c:\program files\subversion\bin\svn.exe"
|
|
|
|
:: Path to the directory containing translated version of the GPL license
|
|
SET LICENSEDIR=c:\lazarus\source\license
|
|
|
|
|
|
::=====================================================================
|
|
:: no change needed after this.
|
|
|
|
:: Some internal variables
|
|
SET MAKEEXE=%FPCBINDIR%\make.exe
|
|
SET LOGFILE=%CD%\installer.log
|
|
SET DATESTAMP=%date:~-4,4%%date:~-7,2%%date:~-10,2%
|
|
SET BUILDDRIVE=%BUILDDIR:~,2%
|
|
SET CP=%FPCBINDIR%\cp.exe
|
|
|
|
ECHO Starting at: > %LOGFILE%
|
|
%FPCBINDIR%\gdate >> %LOGFILE%
|
|
|
|
:: set path to make sure the right tools are used
|
|
SET OLDPATH=%PATH%
|
|
SET PATH=%FPCBINDIR%
|
|
|
|
::: copy lazarus dir
|
|
rmdir /s /q %BUILDDIR%
|
|
%SVN% export %LAZSVNDIR% %BUILDDIR% >> %LOGFILE%
|
|
..\..\svn2revisioninc %LAZSVNDIR% %BUILDDIR%\ide\revision.inc
|
|
|
|
:: copy fpc source
|
|
gmkdir -p %BUILDDIR%\fpcsrc
|
|
%SVN% export %FPCSVNDIR%\rtl %BUILDDIR%\fpcsrc\rtl >> %LOGFILE%
|
|
%SVN% export %FPCSVNDIR%\fcl %BUILDDIR%\fpcsrc\fcl >> %LOGFILE%
|
|
%SVN% export %FPCSVNDIR%\packages %BUILDDIR%\fpcsrc\packages >> %LOGFILE%
|
|
|
|
call build-fpc.bat
|
|
|
|
:: exit if no compiler has been made
|
|
if not exist %BUILDDIR%\pp\bin\i386-win32\ppc386.exe goto END
|
|
|
|
%CP% %FPCBINDIR%\*.* %BUILDDIR%\pp\bin\i386-win32 >> %LOGFILE%
|
|
samplecfg.vbs
|
|
|
|
call build-lazarus.bat
|
|
|
|
:: do not create installer, if the required executables are not there
|
|
if not exist %BUILDDIR%\lazarus.exe goto END
|
|
if not exist %BUILDDIR%\startlazarus.exe goto END
|
|
|
|
:: copy gdb into build dir
|
|
%CP% -pr %GDBDIR% %BUILDDIR%
|
|
|
|
:: create the installer
|
|
%ISCC% lazarus.iss >> installer.log
|
|
|
|
:: do not delete build dir, if installer failed.
|
|
if not exist output\lazarus-%LAZVERSION%-%DATESTAMP%-win32.exe goto END
|
|
|
|
:: delete build dir
|
|
rd /s /q %BUILDDIR% > NUL
|
|
|
|
:END
|
|
|
|
SET PATH=%OLDPATH%
|
|
|
|
ECHO Finished at: >> %LOGFILE%
|
|
%FPCBINDIR%\gdate >> %LOGFILE%
|
|
|