#!/bin/bash ########################################################################### # # Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # @file document.sh # # @date 29-Apr-2020 # @author P. Lucia # # @brief Generates doxygen documentation # ############################################################################ cd ../ export PROJECT_DIRECTORY=$(pwd) rm -rf document/html doxygen document/Doxyfile cd html xdg-open document/index.html