Ver código fonte

install script, with doc generation and bin tree

nas 3 anos atrás
pai
commit
0529206b31
1 arquivos alterados com 8 adições e 0 exclusões
  1. 8
    0
      install.sh

+ 8
- 0
install.sh Ver arquivo

@@ -1,5 +1,13 @@
1 1
 #!/bin/sh
2 2
 
3
+echo "Generate documentation ? [Yn]"
4
+read doc
5
+
3 6
 echo "Installing dependencies"
4 7
 apt install gcc
5 8
 
9
+mkdir -p bin/dev bin/debug bin/release
10
+
11
+if [ "$doc" = "Y" ] || [ "$doc" = "y" ] ; then
12
+    doxygen doc.conf
13
+fi

Carregando…
Cancelar
Salvar