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
|
package BCB2007WorkspaceCreator;
# ************************************************************
# Description : A BCB2007 Workspace Creator
# Author : Johnny Willemsen
# Create Date : 14/12/2005
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use BCB2007ProjectCreator;
use BorlandPropertyBase;
use WinWorkspaceBase;
use WorkspaceCreator;
use vars qw(@ISA);
@ISA = qw(BorlandPropertyBase WinWorkspaceBase WorkspaceCreator);
# ************************************************************
# Subroutine Section
# ************************************************************
sub crlf {
#my $self = shift;
return "\n";
}
sub compare_output {
#my $self = shift;
return 1;
}
sub workspace_file_extension {
#my $self = shift;
return '.groupproj';
}
sub pre_workspace {
my($self, $fh) = @_;
my $crlf = $self->crlf();
## This identifies it as a Borland C++Builder 2007 file
print $fh '<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">', $crlf;
## Optionally print the workspace comment
# $self->print_workspace_comment($fh,
# '<!-- $Id: BCB2007WorkspaceCreator.pm 1934 2010-11-12 12:40:22Z elliott_c $ -->', $crlf,
# '<!-- MPC Command -->', $crlf,
# '<!-- ', $self->create_command_line_string($0, @ARGV), ' -->',
# $crlf);
}
sub write_comps {
my($self, $fh) = @_;
my $crlf = $self->crlf();
my $project_info = $self->get_project_info();
my @projects = $self->sort_dependencies($self->get_projects(), 0);
## Print GUID and personality information
print $fh ' <PropertyGroup>', $crlf,
' <ProjectGuid>{1946f85e-487f-46b6-8e41-159cd446db35}</ProjectGuid>', $crlf,
' </PropertyGroup>', $crlf,
' <ItemGroup />', $crlf,
' <ItemGroup />', $crlf,
' <ProjectExtensions>', $crlf,
' <Borland.Personality>Default.Personality</Borland.Personality>', $crlf,
' <Borland.ProjectType />', $crlf,
' <BorlandProject>', $crlf,
' <BorlandProject xmlns=""> <Default.Personality> </Default.Personality> </BorlandProject></BorlandProject>', $crlf,
' </ProjectExtensions>', $crlf;
## Print the project targets
foreach my $project (@projects) {
my $name = $$project_info{$project}->[ProjectCreator::PROJECT_NAME];
print $fh ' <Target Name="', $name, '">', $crlf,
' <MSBuild Projects="', $self->mpc_basename($project), '" Targets="" />', $crlf,
' </Target>', $crlf,
' <Target Name="', $name, ':Make">', $crlf,
' <MSBuild Projects="', $self->mpc_basename($project), '" Targets="Make" />', $crlf,
' </Target>', $crlf,
' <Target Name="', $name, ':Clean">', $crlf,
' <MSBuild Projects="', $self->mpc_basename($project), '" Targets="Clean" />', $crlf,
' </Target>', $crlf;
}
## Print the target build order
print $fh ' <Target Name="Build">', $crlf,
' <CallTarget Targets="';
foreach my $project (@projects) {
print $fh $$project_info{$project}->[ProjectCreator::PROJECT_NAME], ';';
}
## Print the target make order
print $fh '" />', $crlf,
' </Target>', $crlf,
' <Target Name="Make">', $crlf,
' <CallTarget Targets="';
foreach my $project (@projects) {
print $fh $$project_info{$project}->[ProjectCreator::PROJECT_NAME],
':Make;';
}
## Print the target clean order
print $fh '" />', $crlf,
' </Target>', $crlf,
' <Target Name="Clean">', $crlf,
' <CallTarget Targets="';
foreach my $project (@projects) {
print $fh $$project_info{$project}->[ProjectCreator::PROJECT_NAME],
':Clean;';
}
print $fh '" />', $crlf,
' </Target>', $crlf,
'</Project>', $crlf;
}
1;
|