Files
GDevelop/scripts/GenerateAllDocs.sh

25 lines
528 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#Script launching the generation of the documentations of all modules
#Install globally doxgen and jsdoc before starting it.
echo Generating all docs...
mkdir -p ../docs
mkdir -p logs
cd ..
cd Core/docs
doxygen
echo Generated Core docs
cd ../..
cd GDJS/docs
doxygen
echo Generated GDJS docs
cd ../..
cd GDCpp/docs
doxygen
echo Generated GDCpp docs
cd ../..
cd GDJS
npm install
jsdoc -c docs/jsdoc.conf.json -t docs/jaguarjs-jsdoc docs/DocMainPage.md
echo Generated GDJS Runtime docs
cd ..
cd scripts