mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 15:52:41 +02:00

documentation will be collected here: http://wiki.lazarus.freepascal.org/LazSVNPkg git-svn-id: trunk@17160 -
23 lines
468 B
ObjectPascal
23 lines
468 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit lazsvnpkg;
|
|
|
|
interface
|
|
|
|
uses
|
|
SVNLogForm, SVNUpdateForm, SVNDiffForm, SVNSettingsForm, SVNClasses,
|
|
SVNStatusForm, SVNCommitForm, LazSVNIntf, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('LazSVNIntf', @LazSVNIntf.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('lazsvnpkg', @Register);
|
|
end.
|