]> Creatis software - clitk.git/blob - travis/travis_build_vv.sh
Add travis files
[clitk.git] / travis / travis_build_vv.sh
1 #!/bin/bash
2 set -ev
3 MAKE="make --jobs=$NUM_THREADS --keep-going"
4
5 #Prepare cmake arguments following the vv version
6 cmake_arg_str=" -DCLITK_BUILD_REGISTRATION=OFF
7 -DCLITK_BUILD_SEGMENTATION=OFF
8 -DCLITK_BUILD_TOOLS=OFF
9 -DCLITK_BUILD_VV=ON
10 -DCLITK_EXPERIMENTAL=OFF"
11
12 #CMAKE and MAKE
13 mkdir -p $BUILD_DIR
14 cd $BUILD_DIR
15 cmake $cmake_arg_str ..
16 $MAKE
17 cd -
18 cd $cwd