Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-01-04 12:38:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-04 12:42:00 +0300
commit236fabcc41eb769112a1d61ded82f6b913d0d434 (patch)
tree325b29600e535aac46d22b580cbbec37faae4225 /make.bat
parent4c37d910deb5a6e202cb9e166755780e5d0c89b1 (diff)
Minor edits to sync make.bat & makefile
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat9
1 files changed, 6 insertions, 3 deletions
diff --git a/make.bat b/make.bat
index c62efbd0503..42f49f3ae2b 100644
--- a/make.bat
+++ b/make.bat
@@ -48,7 +48,7 @@ if NOT EXIST %BLENDER_DIR%..\lib\nul (
if NOT "%1" == "" (
REM Help Message
- if "%1" == "--help" (
+ if "%1" == "help" (
echo.
echo Convenience targets
echo - debug
@@ -103,7 +103,9 @@ if NOT "%1" == "" (
/target:clean ^
/property:Configuration=%BUILD_TYPE% ^
/verbosity:minimal
- echo Cleaned "%BUILD_DIR%"
+ if %ERRORLEVEL% NEQ 0 (
+ echo Cleaned "%BUILD_DIR%"
+ )
goto EOF
) else (
echo Command "%1" unknown, aborting!
@@ -157,7 +159,8 @@ msbuild ^
/verbosity:minimal
echo.
-echo Your build is complete at: "%BUILD_DIR%\bin\%BUILD_TYPE%"
+echo edit build configuration with: "%BUILD_DIR%\CMakeCache.txt" run make again to rebuild.
+echo Blender successfully built, run from: "%BUILD_DIR%\bin\%BUILD_TYPE%"
echo.
:EOF