even more refinement to the vcvarsall thing

master
Allen Webster 2017-06-22 21:57:08 -04:00
parent 4cbf3e2ff9
commit 27f72256d9
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ REM default files no matter where you store your code.
REM And no matter how you call buildsuper.bat.
SET CODE_HOME=%~dp0
IF NOT "%Platform%" == "X64" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x64.bat")
IF NOT "%Platform%" == "X64" IF NOT "%Platform%" == "x64" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x64.bat")
SET SRC=%1
if "%SRC%" == "" SET SRC=4coder_default_bindings.cpp

View File

@ -6,7 +6,7 @@ REM default files no matter where you store your code.
REM And no matter how you call buildsuper.bat.
SET CODE_HOME=%~dp0
IF NOT "%Platform%" == "X86" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x86.bat")
IF NOT "%Platform%" == "X86" IF NOT "%Platform%" == "x86" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x86.bat")
SET SRC=%1
if "%SRC%" == "" (SET SRC=4coder_default_bindings.cpp)