Skip to content

Commit

Permalink
修改 windows 构建脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Dec 10, 2016
1 parent 30b8a87 commit cba208c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,15 @@ for %%a in (%*) do (
)

if "!BUILD_TYPE!"=="clean" (
rmdir /S/Q out\Windows_*
if "!TARGET_ARCH!"=="amd64" (
rmdir /S/Q out\Windows_amd64_Debug
rmdir /S/Q out\Windows_amd64_Release
)

if "!TARGET_ARCH!"=="i386" (
rmdir /S/Q out\Windows_i386_Debug
rmdir /S/Q out\Windows_i386_Release
)
goto out
)

Expand Down

0 comments on commit cba208c

Please sign in to comment.