1
0
Files
aarre
applications
bindings
components
ZVDateTimeCtrls
aboutcomponent
acs
beepfp
chelper
cmdline
cmdlinecfg
colorpalette
csvdocument
epiktimer
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazbarcodes
lclextensions
longtimer
manualdock
mplayer
multithreadprocs
nvidia-widgets
docs
examples
fpdoc
src
utils
crop.pp
fpmake.pp
config.inc
configure.sh
fpmake.pp
fpmake_add.inc
fpmake_proc.inc
readme.txt
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
svn
tdi
thtmlport
tparadoxdataset
tvplanit
virtualtreeview
virtualtreeview-new
xdev_toolkit
zlibar
examples
lclbindings
wst
lazarus-ccr/components/nvidia-widgets/utils/fpmake.pp

33 lines
438 B
ObjectPascal
Raw Normal View History

{$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}