mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
2def35c6f2
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@504 b45a01b8-16f6-495d-af2f-9b41ad6348cc
17 lines
289 B
Plaintext
Executable File
17 lines
289 B
Plaintext
Executable File
|
|
#!/bin/bash
|
|
# This script creates a doxygen documentation of retroshare
|
|
# you need to install doxygen and graph-viz(dot tool) for script to work
|
|
|
|
|
|
echo "doxygen and graph viz must be installed"
|
|
|
|
# create documentation
|
|
doxygen rsDocumentation || exit
|
|
|
|
#indicate finshed
|
|
echo "complete"
|
|
|
|
|
|
|