Skip to content

Commit

Permalink
Do not delete the whole source code dir, only delete the build dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
wangwenx190 committed Nov 28, 2018
1 parent f74f8c9 commit 3652f81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions win-build-llvm.bat
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ cmake %_CMAKE_CMD%
IF %ERRORLEVEL% NEQ 0 ECHO Something wrong happened, please check the log file && GOTO Fin
msbuild /p:Configuration=Release INSTALL.vcxproj
IF %ERRORLEVEL% NEQ 0 ECHO Something wrong happened, please check the log file && GOTO Fin
CD /D "%~dp0"
RD /S /Q %_LLVM_SRC_DIR%
CD /D "%_LLVM_SRC_DIR%"
RD /S /Q build
ECHO Build succeeded
GOTO Fin

Expand Down
4 changes: 2 additions & 2 deletions win-build-openal.bat
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ cmake %_CMAKE_CMD%
IF %ERRORLEVEL% NEQ 0 ECHO Something wrong happened, please check the log file && GOTO Fin
msbuild /p:Configuration=Release INSTALL.vcxproj
IF %ERRORLEVEL% NEQ 0 ECHO Something wrong happened, please check the log file && GOTO Fin
CD /D "%~dp0"
RD /S /Q %_OPENAL_SRC_DIR%
CD /D "%_OPENAL_SRC_DIR%"
RD /S /Q build
ECHO Build succeeded
GOTO Fin

Expand Down

0 comments on commit 3652f81

Please sign in to comment.