fpc/packages/jni/fpmake.pp
marco ee8bb72f68 * version to 3.2.2rc1
git-svn-id: tags/release_3_2_2_rc1@48700 -
2021-02-17 17:25:43 +00:00

39 lines
676 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('jni');
{$ifdef ALLPACKAGES}
P.Directory:=ADirectory;
{$endif ALLPACKAGES}
P.Version:='3.2.2rc1';
P.OSes := [win32,win64,linux,android];
P.Author := 'FreePascal development team';
P.License := 'LGPL with modification, ';
P.HomepageURL := 'www.freepascal.org';
P.SourcePath.Add('src');
P.SupportBuildModes := [bmOneByOne];
P.Options.Add('-Ur');
T:=P.Targets.AddUnit('jni.pas');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}