diff options
author | bala <balanatarajan@users.noreply.github.com> | 2004-09-22 18:46:54 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2004-09-22 18:46:54 +0000 |
commit | d7c89c274e85d941fbd27266abc9c1e3efa3987e (patch) | |
tree | d9ed64728102dcd96e17bfcfdc396af3d992bbfc /bin/msvc_cidlc.pl | |
parent | 30097bf630583bd74343229e8ee881e644793ad7 (diff) | |
download | ATCD-d7c89c274e85d941fbd27266abc9c1e3efa3987e.tar.gz |
ChangeLogTag:Wed Sep 22 13:46:01 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'bin/msvc_cidlc.pl')
-rwxr-xr-x | bin/msvc_cidlc.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/msvc_cidlc.pl b/bin/msvc_cidlc.pl index 3ffd0295848..fd171aba381 100755 --- a/bin/msvc_cidlc.pl +++ b/bin/msvc_cidlc.pl @@ -26,7 +26,7 @@ $Build_Cmd = "/BUILD"; $use_custom_dir = 0; $useenv = ''; $vc7 = 0; -$Build_Release=1; +$Build_Debug = 1; # Build sub Build ($$) @@ -92,8 +92,8 @@ sub Build_All () $count = 0; foreach $c (@configurations) { print STDERR "Configuration ".$count++." of ".$#configurations."\n" if ($print_status == 1); - if ($Build_Release) { - $Status = Build_VC7 ($c, "release"); + if ($Build_Debug) { + $Status = Build_VC7 ($c, "debug"); return if $Status != 0 && !$Ignore_errors; } } |