summaryrefslogtreecommitdiffstats
path: root/build/win32/build.bat
blob: 02d2d15b2256e1d6c39b9f0262d2d317f1e963c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@if "%VV32CALLED%"=="" goto call_vv32

:call_nmake
@nmake /NOLOGO install
@goto end

:call_vv32
@call vcvars32.bat > vc.tmp
@del vc.tmp
@set VV32CALLED="YES"
@goto call_nmake

:end