]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/doxygen/regen.sh
Add MacHideApp
[wxWidgets.git] / docs / doxygen / regen.sh
... / ...
CommitLineData
1#!/bin/sh
2
3doxygen
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...
7cp 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...
11cp 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
16currpath=`pwd`/
17interfacepath=`cd ../../interface && pwd`/
18cat doxygen.log | sed -e "s|$currpath||g" -e "s|$interfacepath||g" >temp
19mv temp doxygen.log
20
21# filter out the following warning which we don't care about
22cat doxygen.log | grep -v ".*supplied.*as.*the.*argument.*is.*not.*an.*input.*file.*" >temp
23mv temp doxygen.log
24