summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm
blob: f6faf60d5ec51703ff9f713fffbc98c9d462252d (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package VC7WorkspaceCreator;

# ************************************************************
# Description   : A VC7 Workspace Creator
# Author        : Chad Elliott
# Create Date   : 5/14/2002
# ************************************************************

# ************************************************************
# Pragmas
# ************************************************************

use strict;

use GUID;
use VC7ProjectCreator;
use WorkspaceCreator;

use vars qw(@ISA);
@ISA = qw(WorkspaceCreator);

# ************************************************************
# Subroutine Section
# ************************************************************


sub workspace_file_name {
  my($self) = shift;
  return $self->get_workspace_name() . ".sln";
}


sub pre_workspace {
  my($self) = shift;
  my($fh)   = shift;

  print $fh "Microsoft Visual Studio Solution File, Format Version 7.00\r\n";
}


sub write_comps {
  my($self)     = shift;
  my($fh)       = shift;
  my($gen)      = shift;
  my($projects) = $self->get_projects();
  my($ggen)     = new GUID();
  my($guid)     = $ggen->generate($self->workspace_file_name());
  my($pjs)      = $self->get_project_info();

  ## Project Information
  foreach my $project (@$projects) {
    my($pi) = $$pjs{$project};
    my($name, $deps, $pguid) = @$pi;

    ## Convert all /'s to \
    my($cpy) = $project;
    $cpy =~ s/\//\\/g;
    print $fh "Project(\"{$guid}\") = \"$name\", \"$cpy\", \"{$pguid}\"\r\n" .
              "EndProject\r\n";
  }

  ## Project Configurations
  print $fh "Global\r\n" .
            "        GlobalSection(SolutionConfiguration) = preSolution\r\n";

  my(%configs) = ();
  foreach my $project (@$projects) {
    my($pi) = $$pjs{$project};
    my($name, $deps, $pguid, @cfgs) = @$pi;
    foreach my $cfg (@cfgs) {
      $cfg =~ s/\|.*//;
      $configs{$cfg} = 1;
    }
  }
  my($count) = 0;
  foreach my $key (sort keys %configs) {
    print $fh "                ConfigName.$count = $key\r\n";
    $count++;
  }

  ## Project Dependencies
  print $fh "        EndGlobalSection\r\n" .
            "        GlobalSection(ProjectDependencies) = postSolution\r\n";
  foreach my $project (@$projects) {
    my($pi) = $$pjs{$project};
    my($name, $deps, $pguid) = @$pi;
    if (defined $deps && $deps ne "") {
      my($darr) = $self->create_array($deps);
      my($i)    = 0;
      foreach my $dep (@$darr) {
        my($val) = $gen->specific_lookup($dep);
        if (!defined $val) {
          $val = $dep;
        }
        print $fh "                {$pguid}.$i = {$val}\r\n";
        $i++;
      }
    }
  }
  print $fh "        EndGlobalSection\r\n" .
            "        GlobalSection(ProjectConfiguration) = postSolution\r\n";

  ## Project Configuration Names
  foreach my $project (@$projects) {
    my($pi) = $$pjs{$project};
    my($name, $deps, $pguid, @cfgs) = @$pi;
    foreach my $cfg (@cfgs) {
      my($c) = $cfg;
      $c =~ s/\|.*//;
      print $fh "                {$pguid}.$c.ActiveCfg = $cfg\r\n" .
                "                {$pguid}.$c.Build.0 = $cfg\r\n";
    }
  }
  print $fh "        EndGlobalSection\r\n" .
            "        GlobalSection(ExtensibilityGlobals) = postSolution\r\n" .
            "        EndGlobalSection\r\n" .
            "        GlobalSection(ExtensibilityAddIns) = postSolution\r\n" .
            "        EndGlobalSection\r\n" .
            "EndGlobal\r\n";
}


sub project_creator {
  my($self) = shift;
  return new VC7ProjectCreator($self->get_global_cfg(),
                               $self->get_include_path(),
                               $self->get_template_override(),
                               $self->get_ti_override());
}


1;