You've already forked lazarus-ccr
added fpmake file
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2237 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
24
components/nvidia-widgets/utils/fpmake.pp
Normal file
24
components/nvidia-widgets/utils/fpmake.pp
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
program fpmake;
|
||||||
|
|
||||||
|
{$mode objfpc} {$H+}
|
||||||
|
|
||||||
|
uses
|
||||||
|
fpmkunit;
|
||||||
|
|
||||||
|
var
|
||||||
|
P: TPackage;
|
||||||
|
i: integer;
|
||||||
|
|
||||||
|
begin
|
||||||
|
with Installer do
|
||||||
|
begin
|
||||||
|
//create nvwidgets package
|
||||||
|
P := AddPackage('nvwidget_utils');
|
||||||
|
|
||||||
|
//utility applications
|
||||||
|
P.Targets.AddUnit('crop.pp');
|
||||||
|
|
||||||
|
Run;
|
||||||
|
end;
|
||||||
|
end.
|
||||||
|
|
Reference in New Issue
Block a user