-
Notifications
You must be signed in to change notification settings - Fork 3
/
build_all_vs9.bat
38 lines (32 loc) · 1020 Bytes
/
build_all_vs9.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
REM
REM Utility script building all VS9 release / debug projects
REM
SET THIS_DIR=%~dp0
Setlocal EnableDelayedExpansion
REM set up 64bit environment
@SET WindowsSdkDir=C:\Program Files\Microsoft SDKs\Windows\v6.0A\
call "c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat" %*
title Building x64 debug
cd /d %THIS_DIR%
call createX86_vs11_x64_debug
move bin bin_vs9_x64_debug
move tmp tmp_vs9_x64_debug
title Building x64 release
cd /d %THIS_DIR%
call createX86_vs11_x64_release
move bin bin_vs9_x64_release
move tmp tmp_vs9_x64_release
REM set up 32bit environment
@SET WindowsSdkDir=C:\Program Files\Microsoft SDKs\Windows\v6.0A\
call "c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" %*
title Building x86 debug
cd /d %THIS_DIR%
call createX86_vs11_x86_debug
move bin bin_vs9_x86_debug
move tmp tmp_vs9_x86_debug
title Building x86 release
cd /d %THIS_DIR%
call createX86_vs11_x86_release
move bin bin_vs9_x86_release
move tmp tmp_vs9_x86_release