mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 16:38:16 +02:00
23 lines
470 B
ObjectPascal
23 lines
470 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit EducationLaz;
|
|
|
|
interface
|
|
|
|
uses
|
|
EduEnvOptsFrame, EduOptions, EduPkgSystem, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('EduEnvOptsFrame', @EduEnvOptsFrame.Register);
|
|
RegisterUnit('EduPkgSystem', @EduPkgSystem.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('EducationLaz', @Register);
|
|
end.
|