Skip to content
Snippets Groups Projects
Select Git revision
  • 0149902e55c9afd8a7501ceb8568176a2493ccd2
  • master default protected
  • aca
  • improve_README
  • v1.2.0
  • v1.1.1 protected
  • v1.1.0 protected
  • v1.0.0 protected
8 results

config.py

Blame
  • generate-documentation 616 B
    #!/bin/bash
    
    echo "###############################################################"
    echo "# Generating C++ Documentation                                #"
    echo "###############################################################"
    #Files will be created in cpp/html with in `doxygen` folder
    ( 
        cd doxygen
        doxygen Doxyfile
    )
    
    echo "##############################################################"
    echo "# Generating Python Documentation                            #"
    echo "##############################################################"
    #Files will be created in _build/html 
    mkdir -p _build
    sphinx-build . _build