make.bat: only configure once

This commit is contained in:
Campbell Barton
2016-01-02 06:30:19 +11:00
parent 1ed610ed73
commit dc20db1c6c

View File

@@ -125,15 +125,18 @@ if NOT EXIST %BUILD_DIR%\nul (
mkdir %BUILD_DIR% mkdir %BUILD_DIR%
) )
cmake ^ REM Only configure on first run
%BUILD_CMAKE_ARGS% ^ if NOT EXIST %BUILD_DIR%\Blender.sln (
-H%BLENDER_DIR% ^ cmake ^
-B%BUILD_DIR% ^ %BUILD_CMAKE_ARGS% ^
%BUILD_CMAKE_ARGS% -H%BLENDER_DIR% ^
-B%BUILD_DIR% ^
%BUILD_CMAKE_ARGS%
if %ERRORLEVEL% NEQ 0 ( if %ERRORLEVEL% NEQ 0 (
echo "Configuration Failed" echo "Configuration Failed"
goto EOF goto EOF
)
) )
msbuild ^ msbuild ^