fpmake.pp 575 B

1234567891011121314151617181920212223242526272829303132
  1. {$ifndef ALLPACKAGES}
  2. {$mode objfpc}{$H+}
  3. program fpmake;
  4. uses fpmkunit;
  5. Var
  6. P : TPackage;
  7. T : TTarget;
  8. begin
  9. With Installer do
  10. begin
  11. {$endif ALLPACKAGES}
  12. P:=AddPackage('iosxlocale');
  13. P.ShortName := 'iosl';
  14. P.Dependencies.Add('univint');
  15. {$ifdef ALLPACKAGES}
  16. P.Directory:=ADirectory;
  17. {$endif ALLPACKAGES}
  18. P.Version:='3.3.1';
  19. P.SourcePath.Add('src');
  20. P.OSes:=[darwin,iphonesim,ios];
  21. T:=P.Targets.AddUnit('iosxlocale.pp');
  22. T:=P.Targets.AddUnit('iosxwstr.pp');
  23. {$ifndef ALLPACKAGES}
  24. Run;
  25. end;
  26. end.
  27. {$endif ALLPACKAGES}