What my build scrip *really* looks like. w/API DOCS problem
Sascha Cunz
mail at SaCu.DE
Fri Feb 20 16:19:09 UTC 2004
> It somehow does not find the tag files that should come with the kdelibs
> API documentation.
> If your kdelibs API documentation does not have .tag files then there is
> no way of building any decent
> KDevelop API documentation
but you could go here:
http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Doxyfile.onlineAPI?rev=1.3
and watch out for "TAGFILES"
and use something like this:
#!/bin/bash
tags='qt dcop interfaces kdecore kdefx kdeui khtml kio kparts kjs kmdi kutils'
for tag in $tags; do
mv $tag.tag $tag.old 2>/dev/null
wget http://developer.kde.org/documentation/library/cvs-api/$tag/$tag.tag
2>/dev/null
if test -e $tag.tag; then
rm $tag.old 2>/dev/null ;
else
echo "failed to download $tag.tag" ;
if test -e $tag.old; then
echo "using an old version!" ;
mv $tag.old $tag.tag 2>/dev/null ;
fi ;
fi ;
done
for fetching the tag files.
Cheers Sascha
More information about the KDevelop-devel
mailing list