1
0
Files
aarre
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
extrasyn
fpexif
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
grid_semaphor
industrialstuff
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lazmapviewer
lclextensions
longtimer
manualdock
mbColorLib
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
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
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}