fpc/rtl/common/fpmake.pp
michael aea94c8707 + Changes to handle arbitrary commands
git-svn-id: trunk@972 -
2005-08-29 07:37:50 +00:00

25 lines
457 B
ObjectPascal

program fpmake;
{$mode objfpc}{$H+}
uses
fpmkunit
{ add your units here };
begin
With Installer Do
begin
StartPackage('Mypackage');
Version:='1.0';
URL:='http://www.freepascal.org/';
Targets.AddUnit('myunit');
Targets['myunit'].OS:=[Win32,Linux];
Targets['myunit'].Resourcestrings:=True;
Targets.AddUnit('testbuild/myotherunit').OS:=[Linux];
Targets.AddProgram('myprog');
EndPackage;
Run;
end;
end.