Files
GDevelop/scripts/GenerateAllDocs.sh
T
Florian Rival 790117d66a Improve the wiki with automatically generated reference pages for all features (#2230)
* We now generate automatically reference pages for all the "official extensions" that are part of GDevelop. They are listing all the actions, conditions and expressions.
* The page with all expressions was slightly improved too.
* The page listing all the "community" extensions is now displaying icons and more details.
2021-01-21 18:15:43 +00:00

33 lines
625 B
Bash
Executable File
Raw 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 GDCpp/docs
doxygen
echo ️ Generated GDCpp 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