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:
authorlazydodo <github@lazydodo.com>2016-11-02 00:30:12 +0300
committerlazydodo <github@lazydodo.com>2016-11-02 00:30:12 +0300
commitf94a460397a86beb9f71e665e8f484fa4e10ebdc (patch)
treee85de8c05febf65d274bf7630720f54e9d65c631 /make.bat
parent13ee9b8ebe08ee95478f51537f10e9a1b1e4d863 (diff)
[msvc/make.bat] Detect spaces in the build path and error out.
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat5
1 files changed, 5 insertions, 0 deletions
diff --git a/make.bat b/make.bat
index c7f2dbbf369..74148e5599d 100644
--- a/make.bat
+++ b/make.bat
@@ -4,6 +4,11 @@ REM This is for users who like to configure & build Blender with a single comman
setlocal ENABLEEXTENSIONS
set BLENDER_DIR=%~dp0
+set BLENDER_DIR_NOSPACES=%BLENDER_DIR: =%
+if not "%BLENDER_DIR%"=="%BLENDER_DIR_NOSPACES%" (
+ echo There are spaces detected in the build path "%BLENDER_DIR%", this is currently not supported, exiting....
+ goto EOF
+)
set BUILD_DIR=%BLENDER_DIR%..\build_windows
set BUILD_TYPE=Release
rem reset all variables so they do not get accidentally get carried over from previous builds