lazarus/tools/install/win
2024-10-05 22:03:23 +02:00
..
innoscript Installer, Windows: Pascal-script in inno installer, do not query user if Wizard runs silent mode 2024-09-12 20:22:49 +02:00
ReplaceText
build-cross.bat Revert "Installer, Win: Add OPT="-OoNOSTACKFRAME" to fpc build. Help the debugger unwind callstacks" 2024-10-02 23:49:13 +02:00
build-fpc.bat Revert "Installer, Win: Add OPT="-OoNOSTACKFRAME" to fpc build. Help the debugger unwind callstacks" 2024-10-02 23:49:13 +02:00
build-lazarus.bat Installer, Win: Include all ppu 2019-05-18 12:29:11 +00:00
ChineseSimplified_from_inno_6_0.isl Translations: Chinese translation update by ACTom, merge request !247 2023-10-31 01:45:39 +03:00
create_installer.bat Installer, Windows: No longer install openssl libs. They will be downloaded by OPM on request. 2022-06-23 22:39:48 +02:00
environmentoptions.xml set main version to 4.99 2024-10-05 22:03:23 +02:00
laz_gear_big.bmp Revised default project icon (less memory usage). Text in logos as graphic, no need for a special font. All by Roland Hahn. 2024-07-29 12:26:08 +02:00
lazarus-cross.iss Installer, Win: Updating URLs to use lazarus.ide.org (including url in image) 2023-12-22 18:39:25 +01:00
lazarus.de.isl Installer, Win: Add qt5pas.dll 2019-05-08 16:59:56 +00:00
lazarus.def.isl Installer, Win: Updating info text during copying files. 2023-12-22 18:39:25 +01:00
lazarus.es.isl
lazarus.fr.isl Translations: French translation update by Gilles Vasseur, bug #34428 2018-10-16 22:48:41 +00:00
lazarus.hu.isl
lazarus.iss Installer, Windows: Pascal-script in inno installer, do not query user if Wizard runs silent mode 2024-09-12 20:22:49 +02:00
lazarus.pt_BR.isl Win Installer: Brazilian Portuguese translation update by Marcelo B Paula, bug #35959 2019-08-15 22:52:52 +00:00
lazarus.ru.isl Installer, Win: updated Russian translation 2023-12-24 18:20:10 +03:00
lazarus.zh_CN.isl Translations: Chinese translation update by ACTom, merge request !247 2023-10-31 01:45:39 +03:00
lazgear.bmp Installer, Win: Update images. Issue #39587 2022-02-11 22:01:55 +01:00
readme.txt
RemovedFiles32.iss
RemovedFiles64.iss
svn2revisioninc.bat svn2revisioninc, Installer: use first-parent for git describe 2021-10-09 21:38:25 +02:00

This readme describes how to create a lazarus installation package for win32.
The creation of an installation packages consists of three steps:
A. Setup the build machine.
B. Adjust create_installer.bat to your configuration.
C. Run create_installer.bat.

A Setup the build machine.

A.1 Inno Setup
I used Inno Setup, a free installer for Windows programs. You can download it from http://www.jrsoftware.org/, and you need the QuickStart Pack and during installation choose Inno Setup Preprocessor too.

A.2 Subversion
The build script assumes you have the Subversion client installed. You can download it from http://subversion.tigris.org/, you can use the package with setup in name.

A.3 FPC sources
The build script assumes you have a svn version of the fpcbuild sources. For information about getting the fpc sources from svn see: http://www.freepascal.org/

A.4 Lazarus sources
A Lazarus svn tree, containing the lazarus sources.

A.5 Lazarus binaries
Some binaries from a lazarus/binaries svn tree. These binaries (like gdb and the qt interface dll) are distributed with Lazarus, but are not built from source.

A.6. The latest release of the fpc compiler
Currently the latest release is fpc 2.6.0. You need just the ppcXXX.exe (ppc386.exe for win32 and ppcx64.exe for win64) to bootstrap compilation of the current fpc version.

A.7. The CHM help files for Lazarus
If you want to include CHM help files in the installer, you'll need a directory with the FCL, RTL, LCL etc .CHM files (and associated index etc files, optionally including subdirectories) .

B Adjust create_installer.bat to your configuration

Open the create_installer.bat in a text editor and check the variables, to see if they match your configuration:
ISCC: Path to the Inno Setup Compiler .exe file.
BUILDDIR: Path to build directory.
SVN: Path to the Subversion .exe file.

Alternatively, you can set these as environment variables before you run the batch script, e.g.:
SET ISCC="C:\Program Files (x86)\Inno Setup 5\ISCC.exe"
SET LAZTEMPBUILDDIR="c:\temp\lazarusbuild"
SET SVN="C:\Program Files\Subversion\bin\svn.exe"

C Run create_installer.bat

Run the script:

create_installer.bat FPCSVNDIR LAZSVNDIR LAZSVNBINDIR RELEASE_PPC
or
create_installer.bat FPCSVNDIR LAZSVNDIR LAZSVNBINDIR RELEASE_PPC IDE_WIDGETSET PATCHFILE CHMHELPFILES

where:
FPCSVNDIR: Path to the fpc sources checked out of svn (see A.3)
LAZSVNDIR: Path to the lazarus sources checked out of svn (see A.4)
LAZSVNBINDIR: Path to the svn lazarus binaries (see A.5)
RELEASE_PPC: Path to the FPC compiler required to start the build of fpc it FPCSVNDIR (see A.6)
IDE_WIDGETSET: Optional: IDE widgetset to be created. If not needed: don't enter it or use ""
PATCHFILE: Optional: name of FPC patch file for the FPC sources. If not needed: don't enter it or use ""
CHMHELPFILES: Optional: directory containing CHM help files to be included in the installer (see A.7). If not needed: don't enter it or use ""

Just do it. Wait about 40 minutes (on 2.6 GHz P-IV). A log file named installer.log will be written to the current directory and setup file will be in the Output subdirectory of the current directory.