Ticket #1445: buildAllHBD.sh
File buildAllHBD.sh, 376 bytes (added by jsauer, 8 years ago) |
---|
Line | |
---|---|
1 | #!/bin/sh |
2 | mkdir debug-hbd release-hbd |
3 | |
4 | # build debug |
5 | cd debug-hbd |
6 | cmake -D CMAKE_BUILD_TYPE=Debug -D HIGH_BIT_DEPTH=1 .. |
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-hbd |
13 | cmake -D CMAKE_BUILD_TYPE=Release -D HIGH_BIT_DEPTH=1 .. |
14 | #make -j 3 VERBOSE=1 && make install VERBOSE=1 |
15 | make -j 3 && make install |
16 | cd .. |