mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-08 02:55:39 -05:00
17 lines
289 B
Plaintext
17 lines
289 B
Plaintext
![]() |
|
||
|
#!/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"
|
||
|
|
||
|
|
||
|
|