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-01 18:30:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-01 18:30:02 +0300
commitfe5efe4196dbf018a3fb4accd69eef90a48520f9 (patch)
treee4200b05cbdad60ae410b5aba9570e0355b7d4f7 /make.bat
parent4ccc62dbc84c10a41f0ad7cc76b98466a8cc24cd (diff)
make.bat: add 'clean' command
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/make.bat b/make.bat
index 71a7ca1b4d9..06137f58ae1 100644
--- a/make.bat
+++ b/make.bat
@@ -59,6 +59,7 @@ if NOT "%1" == "" (
echo - bpy
echo.
echo Utilities ^(not associated with building^)
+ echo - clean
echo - update
goto EOF
)
@@ -96,6 +97,14 @@ if NOT "%1" == "" (
git pull --rebase
git submodule foreach git pull --rebase origin master
goto EOF
+ ) else if "%1" == "clean" (
+ msbuild ^
+ %BUILD_DIR%\Blender.sln ^
+ /target:clean ^
+ /property:Configuration=%BUILD_TYPE% ^
+ /verbosity:minimal
+ echo Cleaned "%BUILD_DIR%"
+ goto EOF
) else (
echo Command "%1" unknown, aborting!
goto EOF