blob: 1b595688d4f92dd9a4f7e5e28f1b3c5e7946fff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# fpc/bin must be in your PATH
fpdoc --package=fpgui \
--format=html \
--output=html/gui/ \
--content=html/gui.cnt \
--import=html/gfx.cnt,../gfx/ \
--descr=xml/gui/fpgui.xml --input='-Fi../gui ../gui/fpgui.pas' \
--descr=xml/gui/stylemanager.xml --input='-Fi../gui ../gui/stylemanager.pas' \
--descr=xml/gui/windowsstyle.xml --input='-Fi../gui ../gui/windowsstyle.pas' \
--descr=xml/gui/motifstyle.xml --input='-Fi../gui ../gui/motifstyle.pas' \
--descr=xml/gui/opensoftstyle.xml --input='-Fi../gui ../gui/opensoftstyle.pas'
|