blob: d175ab840b7ce3a79e7cf0bad9682f93fd7f574f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
rem Build GLPK with Microsoft Visual Studio Express 2010
rem NOTE: Make sure that HOME variable specifies correct path
set HOME="C:\Program Files\Microsoft Visual Studio 10.0\VC"
call %HOME%\vcvarsall.bat x86
copy config_VC config.h
%HOME%\bin\nmake.exe /f Makefile_VC
%HOME%\bin\nmake.exe /f Makefile_VC check
pause
|