X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=make.sh;h=2ebe12011854c06aad3b33df2221ef0d973cc436;hb=3ccd013a70a408dc34c770a99c526094998c0dd7;hp=15b951265c280548253548ee4de85d763d9d6487;hpb=34afe547352180006fee9600173c4dc93dc1f6c3;p=modules%2Fshaper.git diff --git a/make.sh b/make.sh index 15b951265..2ebe12011 100755 --- 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}