]> Creatis software - cpPlugins.git/blobdiff - third_party_installers/cpPlugins_Install_ITK.sh
...
[cpPlugins.git] / third_party_installers / cpPlugins_Install_ITK.sh
index d716a854ffd4af4b7ad47bf6cfd3940b0ea3e4f4..8529fed20f5c25d110781ef362450019bf80e6c9 100755 (executable)
@@ -20,7 +20,6 @@ function abspath()
 
 ## Some configuration variables
 number_of_processes="-j4"
-comp_type=Debug
 
 ## Locate cmake executable
 cmake_locations=("/usr/bin" "/usr/local/bin" "${HOME}/local/bin")
@@ -43,7 +42,7 @@ if [ ! -x $cmake_exec ]; then
 fi
 
 ## Check input parameters and process inputs (if needed)
-if [ "$#" -eq 1 ]; then
+if [ "$#" -eq 2 ]; then
     valid_extensions=("zip" "tar" "tar.gz" "tar.bz2")
     actual_ext=""
     for ext in ${valid_extensions[@]}; do
@@ -80,11 +79,13 @@ if [ "$#" -eq 1 ]; then
         exit 1
     fi
     echo "done!"
-elif [ "$#" -eq 2 ]; then
+    build_type=$2
+elif [ "$#" -eq 3 ]; then
     source_dir=`dirname $1`
     build_dir=`dirname $2`
+    build_type=$3
 else
-    echo "Usage: [itk_package] or [itk_source_dir itk_build_dir]
+    echo "Usage: [itk_package] or [itk_source_dir itk_build_dir] [build_type]"
 fi
 
 echo "Given source dir : \"$source_dir\""
@@ -98,7 +99,7 @@ $cmake_exec \
     -DBUILD_EXAMPLES:BOOL=OFF \
     -DBUILD_SHARED_LIBS:BOOL=ON \
     -DBUILD_TESTING:BOOL=OFF \
-    -DCMAKE_BUILD_TYPE:STRING=$comp_type \
+    -DCMAKE_BUILD_TYPE:STRING=$build_type \
     -DModule_ITKReview:BOOL=ON \
     -DModule_ITKVtkGlue:BOOL=OFF \
     -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/local \