fpmake.pp 944 B

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