Salome HOME
PlaneGCS: fix incorrect range of fillet arc on the XZ plane
[modules/shaper.git] / make.sh
diff --git a/make.sh b/make.sh
index 15b951265c280548253548ee4de85d763d9d6487..2ebe12011854c06aad3b33df2221ef0d973cc436 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -7,21 +7,21 @@ while [[ $# > 0 ]]; do
 
   case $key in
     debug|Debug)
-    BUILD_TYPE=Debug
-    shift
-    ;;
+      BUILD_TYPE=Debug
+      shift
+      ;;
     lcov|coverage)
-    BUILD_TYPE=Debug
-    USE_TEST_COVERAGE=ON
-    shift
-    ;;
+      BUILD_TYPE=Debug
+      USE_TEST_COVERAGE=ON
+      shift
+      ;;
     standalone|Standalone)
-    MODE=Standalone
-    shift
-    ;;
+      MODE=Standalone
+      shift
+      ;;
     *)
-    shift
-    ;;
+      shift
+      ;;
   esac
 done
 
@@ -34,7 +34,7 @@ fi
 CMAKE_ARGS=""
 CMAKE_ARGS="${CMAKE_ARGS} -DCMAKE_BUILD_TYPE=${BUILD_TYPE:-Release}"
 CMAKE_ARGS="${CMAKE_ARGS} -DUSE_TEST_COVERAGE=${USE_TEST_COVERAGE:-OFF}"
-CMAKE_ARGS="${CMAKE_ARGS} -DCMAKE_INSTALL_PREFIX:PATH=${NEWGEOM_ROOT_DIR}"
+CMAKE_ARGS="${CMAKE_ARGS} -DCMAKE_INSTALL_PREFIX:PATH=${SHAPER_ROOT_DIR}"
 CMAKE_ARGS="${CMAKE_ARGS} ${SOURCES_DIR}"
 
 mkdir -p ${BUILD_DIR}