Commit 03be2a03 authored by Grigory Petrov's avatar Grigory Petrov

Added comment about Visual Studio 2008 Express and 64-bit compilation.

--HG--
branch : distribute
extra : rebase_source : fb9ba33e9eff145bb3e162f34ae2f0101079d0be
parent b07cff51
......@@ -18,12 +18,15 @@ if "%ERRORLEVEL%"=="0" (
)
REM now for 64-bit
REM Visual Studio 2008 Express can't create 64-bit executable without
REM modifications. Either use higher edition or search google how to
REM modify Express installation.
call VCVARSALL x86_amd64 >nul 2>&1
if "%ERRORLEVEL%"=="0" (
cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:CONSOLE /out:setuptools/cli-64.exe
cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:WINDOWS /out:setuptools/gui-64.exe
) else (
echo Visual Studio ^(Express^) 2008 not found to build Windows 64-bit version
echo Visual Studio 2008 not found to build Windows 64-bit version
)
REM Windows RT ARM build requires both freeware
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment