
fixed build system (linked all fpmake files together) git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2258 8e941d3f-bd1b-0410-a28a-d453659cc2b4
33 lines
438 B
ObjectPascal
33 lines
438 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
program fpmake;
|
|
|
|
{$mode objfpc} {$H+}
|
|
|
|
uses
|
|
fpmkunit;
|
|
|
|
var
|
|
P: TPackage;
|
|
i: integer;
|
|
|
|
begin
|
|
with Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
//create nvwidgets package
|
|
P := AddPackage('nvwidget_utils');
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory := 'utils';
|
|
{$endif ALLPACKAGES}
|
|
|
|
//utility applications
|
|
P.Targets.AddUnit('crop.pp');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|