Browse Source

install script, with doc generation and bin tree

nas 2 years ago
parent
commit
0529206b31
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      install.sh

+ 8
- 0
install.sh View File

@@ -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

Loading…
Cancel
Save