summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2010-07-22 13:34:25 -0400
committerTom Finegan <tomfinegan@google.com>2010-07-22 13:44:16 -0400
commit72d4ba92f0712bb415b070fc919b4e99a36317b7 (patch)
tree43c0d8e04fb68624508deb8813e86811305d3c64 /build/make
parent160d671e349e0a879e93d4a7208beddac5d8ef0a (diff)
downloadlibvpx-72d4ba92f0712bb415b070fc919b4e99a36317b7.tar
libvpx-72d4ba92f0712bb415b070fc919b4e99a36317b7.tar.gz
libvpx-72d4ba92f0712bb415b070fc919b4e99a36317b7.tar.bz2
libvpx-72d4ba92f0712bb415b070fc919b4e99a36317b7.zip
Add vs9 targets.
Add targets x86-win32-vs9 and x86_64-win64-vs9 for support of Visual Studio 2008-- this removes the need to convert the vs8 projects before using them within the IDE. Change-Id: Idb83e2ae701e07d98db1be71638280a493d770a2
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/gen_msvs_proj.sh4
-rwxr-xr-xbuild/make/gen_msvs_sln.sh9
2 files changed, 9 insertions, 4 deletions
diff --git a/build/make/gen_msvs_proj.sh b/build/make/gen_msvs_proj.sh
index 1398bfba9..5181d3252 100755
--- a/build/make/gen_msvs_proj.sh
+++ b/build/make/gen_msvs_proj.sh
@@ -206,7 +206,7 @@ for opt in "$@"; do
;;
--ver=*) vs_ver="$optval"
case $optval in
- [78])
+ [789])
;;
*) die Unrecognized Visual Studio Version in $opt
;;
@@ -248,6 +248,8 @@ case "${vs_ver:-8}" in
;;
8) vs_ver_id="8.00"
;;
+ 9) vs_ver_id="9.00"
+ ;;
esac
[ -n "$name" ] || die "Project name (--name) must be specified!"
diff --git a/build/make/gen_msvs_sln.sh b/build/make/gen_msvs_sln.sh
index b0904f99e..f377aa824 100755
--- a/build/make/gen_msvs_sln.sh
+++ b/build/make/gen_msvs_sln.sh
@@ -25,7 +25,7 @@ files.
Options:
--help Print this message
--out=outfile Redirect output to a file
- --ver=version Version (7,8) of visual studio to generate for
+ --ver=version Version (7,8,9) of visual studio to generate for
--target=isa-os-cc Target specifier
EOF
exit 1
@@ -224,7 +224,7 @@ for opt in "$@"; do
;;
--ver=*) vs_ver="$optval"
case $optval in
- [78])
+ [789])
;;
*) die Unrecognized Visual Studio Version in $opt
;;
@@ -235,7 +235,7 @@ for opt in "$@"; do
7) sln_vers="8.00"
sln_vers_str="Visual Studio .NET 2003"
;;
- 8)
+ [89])
;;
*) die "Unrecognized Visual Studio Version '$optval' in $opt"
;;
@@ -257,6 +257,9 @@ case "${vs_ver:-8}" in
8) sln_vers="9.00"
sln_vers_str="Visual Studio 2005"
;;
+ 9) sln_vers="10.00"
+ sln_vers_str="Visual Studio 2008"
+ ;;
esac
for f in "${file_list[@]}"; do