summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-08-18 12:31:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-08-18 12:31:24 +0000
commit0c3293d55c9b4598490f5bf33dc800bfe272c51e (patch)
treef02f4f4b79521afc8303e4488afbc993b102f49b
parentb8acb1d7d7d894815ab18e39bd0d64769a0c9858 (diff)
downloadATCD-0c3293d55c9b4598490f5bf33dc800bfe272c51e.tar.gz
Wed Aug 18 13:35:00 UTC 2004 Martin Corino <mcorino@remedy.nl>
-rwxr-xr-xbin/msvc_static_compile.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/msvc_static_compile.pl b/bin/msvc_static_compile.pl
index 0f34bc279de..4502daddf78 100755
--- a/bin/msvc_static_compile.pl
+++ b/bin/msvc_static_compile.pl
@@ -237,6 +237,11 @@ while ( $#ARGV >= 0 && $ARGV[0] =~ /^(-|\/)/ )
$vc7 = 1;
$proj_ext = '.vcproj';
}
+ elsif ($ARGV[0] =~ '-vc8') { # Use VC8 project and solution files.
+ print "Using VC8 files\n" if ( $verbose );
+ $vc7 = 1; // VC8 is like VC7
+ $proj_ext = '.vcproj';
+ }
elsif ($ARGV[0] =~ '-v') { # verbose mode
$verbose = 1;
}
@@ -307,6 +312,7 @@ while ( $#ARGV >= 0 && $ARGV[0] =~ /^(-|\/)/ )
print "-s = Print status messages to STDERR\n";
print "-u = Tell MSVC to use the environment\n";
print "-vc7 = Use MSVC 7 toolset\n";
+ print "-vc8 = Use MSVC 8 toolset\n";
print "-name_modifier <mod> = Use MPC name_modifier to match projects\n";
print "\n";
print "-CORE = Build the Core libraries\n";