mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 11:55:28 -04:00
18 lines
616 B
Bash
18 lines
616 B
Bash
#Script launching the generation of the documentations of all modules
|
|
echo Generating all docs...
|
|
mkdir -p logs
|
|
cd ..
|
|
cd Core/docs
|
|
doxygen > ../../scripts/logs/CoreDoxygenLog.txt 2> ../../scripts/logs/CoreDoxygenWarningLog.txt
|
|
cd ../..
|
|
cd GDJS/docs
|
|
doxygen > ../../scripts/logs/GDJSDoxygenLog.txt 2> ../../scripts/logs/GDJSDoxygenWarningLog.txt
|
|
cd ../..
|
|
cd GDCpp/docs
|
|
doxygen > ../../scripts/logs/GDCppDoxygenLog.txt 2> ../../scripts/logs/GDCppDoxygenWarningLog.txt
|
|
cd ../..
|
|
cd GDJS/docs
|
|
yuidoc ../Runtime > ../../scripts/logs/GDJSYuidDocLog.txt 2> ../../scripts/logs/GDJSYuidDocWarningLog.txt
|
|
cd ../..
|
|
cd scripts
|