summaryrefslogtreecommitdiff
path: root/modules/VC7WorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2009-08-19 02:11:50 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2009-08-19 02:11:50 +0000
commit521ecaf0d7aebf13e7d42a71d5a86e9d94c60e43 (patch)
tree0a43cb78ceff32479a0ede84db794c143ca749c7 /modules/VC7WorkspaceCreator.pm
parent315d2a2dd3220e48ab836662c168a9cacc3d4585 (diff)
downloadMPC-521ecaf0d7aebf13e7d42a71d5a86e9d94c60e43.tar.gz
ChangeLogTag: Wed Aug 19 02:11:03 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC7WorkspaceCreator.pm')
-rw-r--r--modules/VC7WorkspaceCreator.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/VC7WorkspaceCreator.pm b/modules/VC7WorkspaceCreator.pm
index eb680c2b..8de15f83 100644
--- a/modules/VC7WorkspaceCreator.pm
+++ b/modules/VC7WorkspaceCreator.pm
@@ -142,7 +142,7 @@ sub write_comps {
## Project Information
foreach my $project (@list) {
- my($pname, $rawdeps, $guid, $language, $custom_only, $nocross, @cfgs) = @{$$pjs{$project}};
+ my($pname, $rawdeps, $guid, $language, $custom_only, $nocross, $managed, @cfgs) = @{$$pjs{$project}};
my $pguid = $guids{$language};
my $deps = $self->get_validated_ordering($project);
my($name, $proj) = $self->adjust_names($pname, $project, $language);
@@ -161,7 +161,7 @@ sub write_comps {
") = preSolution$crlf";
my %configs;
foreach my $project (@list) {
- my($name, $deps, $pguid, $lang, $custom_only, $nocross, @cfgs) = @{$$pjs{$project}};
+ my($name, $deps, $pguid, $lang, $custom_only, $nocross, $managed, @cfgs) = @{$$pjs{$project}};
foreach my $cfg (@cfgs) {
$configs{$self->get_short_config_name($cfg)} = $cfg;
}
@@ -188,7 +188,7 @@ sub write_comps {
## Go through each project and print out the settings per GUID
foreach my $project (@list) {
- my($name, $deps, $pguid, $lang, $custom_only, $nocross, @cfgs) = @{$$pjs{$project}};
+ my($name, $deps, $pguid, $lang, $custom_only, $nocross, $managed, @cfgs) = @{$$pjs{$project}};
my %all_configs = %configs;
foreach my $cfg (sort @cfgs) {
my $c = $self->get_short_config_name($cfg);