mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 02:19:27 +02:00
* forgot to add fpmake.pp in previous commit
This commit is contained in:
parent
25c1112898
commit
bb684c0bb3
38
packages/fcl-fpterm/fpmake.pp
Normal file
38
packages/fcl-fpterm/fpmake.pp
Normal 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}
|
Loading…
Reference in New Issue
Block a user