w64/Build_GLPK_with_VC10.bat
author Alpar Juttner <alpar@cs.elte.hu>
Sun, 05 Dec 2010 17:35:23 +0100
changeset 2 4c8956a7bdf4
permissions -rw-r--r--
Set up CMAKE build environment
     1 rem Build GLPK with Microsoft Visual Studio Express 2010
     2 
     3 rem NOTE: Make sure that HOME variable specifies correct path
     4 set HOME="C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC"
     5 
     6 call %HOME%\vcvarsall.bat x64
     7 copy config_VC config.h
     8 %HOME%\bin\nmake.exe /f Makefile_VC
     9 %HOME%\bin\nmake.exe /f Makefile_VC check
    10 
    11 pause