]>
Commit | Line | Data |
---|---|---|
1 | #!/bin/sh | |
2 | ||
3 | doxygen | |
4 | ||
5 | # this image is not automatically copied by Doxygen because it's not | |
6 | # used in doxygen documentation but only in our html footer... | |
7 | cp images/powered-by-wxwidgets.png out/html | |
8 | ||
9 | # this CSS is automatically copied by Doxygen because it's | |
10 | # included by our custom html header... | |
11 | cp wxwidgets.css out/html | |
12 | ||
13 | # Doxygen has the annoying habit to put the full path of the | |
14 | # affected files in the log file; remove it to make the log | |
15 | # more readable | |
16 | currpath=`pwd`/ | |
17 | interfacepath=`cd ../../interface && pwd`/ | |
18 | cat doxygen.log | sed -e "s|$currpath||g" -e "s|$interfacepath||g" >temp | |
19 | mv temp doxygen.log | |
20 | ||
21 | # filter out the following warning which we don't care about | |
22 | cat doxygen.log | grep -v ".*supplied.*as.*the.*argument.*is.*not.*an.*input.*file.*" >temp | |
23 | mv temp doxygen.log | |
24 |