mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-10 04:10:36 +01:00
3fa6370cea
Changes are all related to automatic creation of documentation. Note: It's not yet fully working in trunk due to changes since 1.8 git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6200 dfc29bdd-3216-0410-991c-e03cc46cb475
21 lines
439 B
Bash
Executable File
21 lines
439 B
Bash
Executable File
mkdir -p ../../../doctemp/html
|
|
|
|
rm tut.txt || true;
|
|
|
|
mkdir ../../../doctemp
|
|
mkdir ../../../doctemp/html
|
|
cp doxygen.css irrlicht.png logobig.png ../../../doctemp/html
|
|
|
|
for i in ../../../examples/[012]*/main.cpp; do
|
|
sed -f tutorials.sed $i >>tut.txt;
|
|
done
|
|
|
|
# Enable for latex docs
|
|
#doxygen doxygen-pdf.cfg
|
|
|
|
# Enable for html docs
|
|
doxygen doxygen.cfg
|
|
|
|
#cp doxygen.css ../../../doctemp/html
|
|
cp irrlicht.png logobig.png ../../../doctemp/html
|