Ticket #1445: buildAll.sh
File buildAll.sh, 318 bytes (added by jsauer, 8 years ago) |
---|
Line | |
---|---|
1 | #!/bin/sh |
2 | mkdir debug release |
3 | |
4 | # build debug |
5 | cd debug |
6 | cmake -DCMAKE_BUILD_TYPE=Debug .. |
7 | #make -j 3 VERBOSE=1 && make install VERBOSE=1 |
8 | make -j 3 && make install |
9 | cd .. |
10 | |
11 | # build release |
12 | cd release |
13 | cmake -DCMAKE_BUILD_TYPE=Release .. |
14 | #make -j 3 VERBOSE=1 && make install VERBOSE=1 |
15 | make -j 3 && make install |
16 | cd .. |
17 |