mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 19:49:31 +02:00
51 lines
908 B
ObjectPascal
51 lines
908 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
{$endif ALLPACKAGES}
|
|
|
|
procedure add_dxegen;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
|
|
begin
|
|
With Installer do
|
|
begin
|
|
P:=AddPackage('dxegen');
|
|
|
|
P.Author := 'Charles Sandmann and others';
|
|
P.License := 'LGPL with modification';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := 'sandmann@clio.rice.edu';
|
|
P.Description := 'DXEGEN converts COFF object files to .DXE files that can be loaded and '+
|
|
'relocated runtime.';
|
|
P.NeedLibC:= false;
|
|
|
|
P.OSes:=[go32v2];
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='fprcp';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
|
|
T:=P.Targets.AddProgram('dxegen.pas');
|
|
T.Dependencies.AddUnit('coff');
|
|
|
|
P.Targets.AddUnit('coff.pp').install:=false;
|
|
end;
|
|
end;
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
begin
|
|
add_dxegen;
|
|
Installer.Run;
|
|
end.
|
|
{$endif ALLPACKAGES}
|
|
|
|
|
|
|
|
|