Loading .gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ /Debug /Release /Testing /Documentation /CMakeLists.txt.user /doc/_build /Build Loading Doxyfile 0 → 100644 +2494 −0 File added.Preview size limit exceeded, changes collapsed. Show changes 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 Loading
.gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ /Debug /Release /Testing /Documentation /CMakeLists.txt.user /doc/_build /Build Loading
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