mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-23 18:32:47 +00:00
23 lines
425 B
Bash
Executable file
23 lines
425 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
version="$1"
|
|
packs=("kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps")
|
|
cwd="$(pwd)"
|
|
|
|
if [ ! which doxygen ];then
|
|
echo "Doxygen is not installed"
|
|
exit 1
|
|
fi
|
|
|
|
source "$(dirname $0)/fetch.sh"
|
|
|
|
# set again
|
|
packs=("kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps")
|
|
for p in "${packs[@]}";do
|
|
echo "Generating API docs for $p..."
|
|
cd "$p"
|
|
doxygen doxygen.conf
|
|
cd "$cwd"
|
|
done
|