Improve documentation workflow (#163)

* Compact project relative paths from doc directory

* Remove committed example_list.md

- generate example_list from cmake for documentation

* Fix doxygen same-line comments

* Add workflow for generating documentation
This commit is contained in:
Tushar Maheshwari
2021-07-23 12:10:47 +05:30
committed by GitHub
parent 7f95d59954
commit a40a54ec10
7 changed files with 72 additions and 87 deletions

View File

@@ -17,11 +17,3 @@ for file in $files
do
clang-format -i $file
done
exampleList="./doc/example_list.md"
echo "# Examples" > $exampleList
files=$(find ./examples -iname "*.cpp" | sort)
for f in $files
do
echo "@example $f" >> $exampleList
done