Commit c6391559 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Added script and config for documentation generation by Doxygen.

parent f2ba089b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
/Debug
/Release
/Testing
/Documentation
/CMakeLists.txt.user
/doc/_build
/Build

Doxyfile

0 → 100644
+2494 −0

File added.

Preview size limit exceeded, changes collapsed.

generate-doc

0 → 100755
+20 −0
Original line number Diff line number Diff line
#!/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