1234567891011121314151617181920212223242526272829303132333435363738 |
- {$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('ptckvm');
- {$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 := 'Driver for the video, keyboard and mouse units, built on top of the PTCPas graphics library.';
- p.OSes:=[linux,win32,win64,go32v2,macosx,openbsd,freebsd];
- P.SourcePath.Add('src');
- P.Dependencies.Add('ptc');
- p.Dependencies.Add('rtl-console');
- T:=P.Targets.AddUnit('ptckvm.pas');
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}
|