Skip to content
Snippets Groups Projects
Commit c6391559 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Added script and config for documentation generation by Doxygen.

parent f2ba089b
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
/Debug
/Release
/Testing
/Documentation
/CMakeLists.txt.user
/doc/_build
/Build
......
Doxyfile 0 → 100644
This diff is collapsed.
#!/bin/bash
PREFIX=${HOME}/.local
INSTALL="yes"
for option in "$@"
do
case $option in
--prefix=* ) PREFIX="${option#*=}" ;;
--install=* ) INSTALL="${option#*=}" ;;
esac
done
doxygen
if [[ "$INSTALL" == "yes" ]]; then
cp -r Documentation/* ${PREFIX}/share/doc
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment