1
0
Files
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
everettrandom
examplecomponent
exctrls
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
Ubuntu-R.ttf
example.lpi
example.pp
fpmake.pp
widget_test.lpi
widget_test.pp
fpdoc
src
utils
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
splashabout
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
lazarus-ccr/components/nvidia-widgets/examples/fpmake.pp

36 lines
526 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_examples');
{$ifdef ALLPACKAGES}
P.Directory := 'examples';
{$endif ALLPACKAGES}
P.Dependencies.Add('nvwidget');
//example applications
P.Targets.AddUnit('example.pp');
P.Targets.AddUnit('widget_test.pp');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}