Browse Source

install script, with doc generation and bin tree

nas 3 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
 #!/bin/sh
1
 #!/bin/sh
2
 
2
 
3
+echo "Generate documentation ? [Yn]"
4
+read doc
5
+
3
 echo "Installing dependencies"
6
 echo "Installing dependencies"
4
 apt install gcc
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