* forgot to add fpmake.pp in previous commit

This commit is contained in:
Nikolay Nikolov 2024-10-20 12:40:00 +03:00
parent 25c1112898
commit bb684c0bb3

View File

@ -0,0 +1,38 @@
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses {$ifdef unix}cthreads,{$endif} fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('fcl-fpterm');
{$ifdef ALLPACKAGES}
P.Directory:=ADirectory;
{$endif ALLPACKAGES}
P.Version:='3.3.1';
P.Author := 'Nikolay Nikolov';
P.License := 'LGPL with modification, ';
P.HomepageURL := 'https://sourceforge.net/projects/fpterm/';
P.Description := 'Terminal emulator library, written in Free Pascal.';
P.OSes := P.OSes - [embedded,nativent,msdos,win16,macosclassic,palmos,zxspectrum,msxdos,amstradcpc,sinclairql,ps1];
// p.OSes:=[linux,win32,win64,go32v2,macosx,openbsd,freebsd];
P.SourcePath.Add('src');
T:=P.Targets.AddUnit('system.terminal.base.pas');
//P.NamespaceMap:='namespaces.lst';
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}