fpmake.pp 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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('tosunits');
  13. P.ShortName := 'tos';
  14. P.Author := 'FPC core team';
  15. P.License := 'LGPL with modification';
  16. P.HomepageURL := 'www.freepascal.org';
  17. P.Description := 'tosunits, OS interface units for Atari TOS/GEM';
  18. {$ifdef ALLPACKAGES}
  19. P.Directory:=ADirectory;
  20. {$endif ALLPACKAGES}
  21. P.Version:='3.3.1';
  22. P.SourcePath.Add('src');
  23. P.OSes:=[atari];
  24. T:=P.Targets.AddUnit('gemdos.pas');
  25. T:=P.Targets.AddUnit('xbios.pas');
  26. T:=P.Targets.AddUnit('vdi.pas');
  27. T:=P.Targets.AddUnit('aes.pas');
  28. P.ExamplePath.Add('examples');
  29. T:=P.Targets.AddExampleProgram('higem.pas');
  30. T:=P.Targets.AddExampleProgram('gemwin.pas');
  31. T:=P.Targets.AddExampleProgram('gemcube.pas');
  32. T:=P.Targets.AddExampleProgram('showpic.pas');
  33. {$ifndef ALLPACKAGES}
  34. Run;
  35. end;
  36. end.
  37. {$endif ALLPACKAGES}