RetroShare/libretroshare/src/scripts/documentation-script

17 lines
289 B
Plaintext
Raw Normal View History

#!/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"