Fix make.bat checking 64bit systems
This commit is contained in:
8
make.bat
8
make.bat
@@ -116,10 +116,12 @@ if NOT "%1" == "" (
|
|||||||
goto argv_loop
|
goto argv_loop
|
||||||
)
|
)
|
||||||
|
|
||||||
if "%PROCESSOR_ARCHITECTURE%" == "x86" (
|
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
|
||||||
set WINDOWS_ARCH=
|
|
||||||
) else (
|
|
||||||
set WINDOWS_ARCH=Win64
|
set WINDOWS_ARCH=Win64
|
||||||
|
) else if "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
|
||||||
|
set WINDOWS_ARCH=Win64
|
||||||
|
) else (
|
||||||
|
set WINDOWS_ARCH=
|
||||||
)
|
)
|
||||||
|
|
||||||
set BUILD_CMAKE_ARGS=%BUILD_CMAKE_ARGS% -G "Visual Studio 12 2013 %WINDOWS_ARCH%"
|
set BUILD_CMAKE_ARGS=%BUILD_CMAKE_ARGS% -G "Visual Studio 12 2013 %WINDOWS_ARCH%"
|
||||||
|
|||||||
Reference in New Issue
Block a user