Ticket #1445: buildAll.sh

File buildAll.sh, 318 bytes (added by jsauer, 7 years ago)

build script for linux

Line 
1#!/bin/sh
2mkdir debug release
3
4# build debug
5cd debug
6cmake -DCMAKE_BUILD_TYPE=Debug ..
7#make -j 3 VERBOSE=1 && make install VERBOSE=1
8make -j 3  && make install 
9cd ..
10
11# build release
12cd release
13cmake -DCMAKE_BUILD_TYPE=Release ..
14#make -j 3 VERBOSE=1 && make install VERBOSE=1
15make -j 3  && make install 
16cd ..
17