mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 06:39:04 +02:00

------------------------------------------------------------------------ r48814 | pierre | 2021-02-26 17:15:30 +0000 (Fri, 26 Feb 2021) | 1 line Do not add libgcc directory to library directories with -Fl option if -Xd option is used ------------------------------------------------------------------------ ------------------------------------------------------------------------ r42843 | pierre | 2019-08-26 21:41:41 +0000 (Mon, 26 Aug 2019) | 1 line Partial update for go32v2 and sources ------------------------------------------------------------------------ --- Merging r44112 into '.': G installer/install.dat --- Recording mergeinfo for merge of r44112 into '.': G . ------------------------------------------------------------------------ r48836 | hajny | 2021-02-28 02:08:17 +0000 (Sun, 28 Feb 2021) | 1 line * package tplylib added, corrections for more than 31 items on a tab ------------------------------------------------------------------------ --- Merging r48836 into '.': G installer/install.dat --- Recording mergeinfo for merge of r48836 into '.': G . ------------------------------------------------------------------------ r49035 | pierre | 2021-03-22 23:26:26 +0000 (Mon, 22 Mar 2021) | 1 line Try to fix short package name issues in install.dat and add missing go32v2 packages ------------------------------------------------------------------------ --- Merging r49035 into '.': G installer/install.dat --- Recording mergeinfo for merge of r49035 into '.': G . git-svn-id: branches/fixes_3_2@49041 -
46 lines
970 B
ObjectPascal
46 lines
970 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('tosunits');
|
|
P.ShortName := 'tos';
|
|
|
|
P.Author := 'FPC core team';
|
|
P.License := 'LGPL with modification';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Description := 'tosunits, OS interface units for Atari TOS/GEM';
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='3.2.1';
|
|
P.SourcePath.Add('src');
|
|
|
|
P.OSes:=[atari];
|
|
|
|
T:=P.Targets.AddUnit('gemdos.pas');
|
|
T:=P.Targets.AddUnit('xbios.pas');
|
|
T:=P.Targets.AddUnit('vdi.pas');
|
|
T:=P.Targets.AddUnit('aes.pas');
|
|
|
|
P.ExamplePath.Add('examples');
|
|
T:=P.Targets.AddExampleProgram('higem.pas');
|
|
T:=P.Targets.AddExampleProgram('gemwin.pas');
|
|
T:=P.Targets.AddExampleProgram('gemcube.pas');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|