Files
GDevelop/scripts/GenerateAllDocs.sh
Florian Rival 1a27f689e0 Remove deprecated/unused/unmaintained GDCpp code (#2930)
* This also includes extensions code.

Only show in developer changelog
2021-08-17 14:34:58 +02:00

29 lines
561 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
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 before starting it.
set -e
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 GDJS
npm install
npm run generate-doc
echo ️ Generated GDJS Runtime docs
cd ..
cd newIDE/app/scripts
npm install
node extract-extensions-document.js
node extract-reference-document.js
cd ../../..
echo ️ Generated wiki docs
cd scripts