Ticket #1445: buildAllHBD.sh

File buildAllHBD.sh, 376 bytes (added by jsauer, 7 years ago)
Line 
1#!/bin/sh
2mkdir debug-hbd release-hbd
3
4# build debug
5cd debug-hbd
6cmake -D CMAKE_BUILD_TYPE=Debug -D HIGH_BIT_DEPTH=1  ..
7#make -j 3 VERBOSE=1 && make install VERBOSE=1
8make -j 3  && make install 
9cd ..
10
11# build release
12cd release-hbd
13cmake -D CMAKE_BUILD_TYPE=Release -D HIGH_BIT_DEPTH=1  ..
14#make -j 3 VERBOSE=1 && make install VERBOSE=1
15make -j 3  && make install 
16cd ..