summaryrefslogtreecommitdiff
path: root/modules/VC7WorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-03-15 16:04:13 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-03-15 16:04:13 +0000
commitf65a7d527b8c1b7aae86d0ca821b157a403061ae (patch)
tree23eb165c77b34a44a78b9c5994ee14bbf40f8498 /modules/VC7WorkspaceCreator.pm
parent30e40069ec7da2f5605898048daba0621eb553ba (diff)
downloadMPC-f65a7d527b8c1b7aae86d0ca821b157a403061ae.tar.gz
ChangeLogTag: Mon Apr 5 10:43:03 2004 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC7WorkspaceCreator.pm')
-rw-r--r--modules/VC7WorkspaceCreator.pm12
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/VC7WorkspaceCreator.pm b/modules/VC7WorkspaceCreator.pm
index 6dbd493d..fed196ac 100644
--- a/modules/VC7WorkspaceCreator.pm
+++ b/modules/VC7WorkspaceCreator.pm
@@ -44,9 +44,17 @@ sub workspace_file_name {
sub pre_workspace {
my($self) = shift;
my($fh) = shift;
+ my($crlf) = $self->crlf();
- print $fh "Microsoft Visual Studio Solution File, Format Version 7.00" .
- $self->crlf();
+ print $fh 'Microsoft Visual Studio Solution File, Format Version 7.00', $crlf,
+ '#', $crlf,
+ '# $Id$', $crlf,
+ '#', $crlf,
+ '# This file was generated by MPC. Any changes made directly to', $crlf,
+ '# this file will be lost the next time it is generated.', $crlf,
+ '#', $crlf,
+ '# MPC Command:', $crlf,
+ "# $0 @ARGV", $crlf;
}