summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@users.noreply.github.com>2017-01-09 12:00:29 +0100
committerGitHub <noreply@github.com>2017-01-09 12:00:29 +0100
commita955a2291185ec0543364817ee66779d0ba4d460 (patch)
treeee459bbbd9c7e9aedc55c1a4b772c270a7fb4f73
parenta0521de2956fc9badcfa04956cb00a2520f096c9 (diff)
parent5511ff5af0963f999731b5a5a374f09fa62976fd (diff)
downloadMPC-ACE+TAO-6_4_2.tar.gz
Merge pull request #26 from LukeLeo/luke-branchACE+TAO-6_4_2
fixed mixed vc version set for vc11 and vc 12
-rw-r--r--modules/VC11WorkspaceCreator.pm2
-rw-r--r--modules/VC12WorkspaceCreator.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/VC11WorkspaceCreator.pm b/modules/VC11WorkspaceCreator.pm
index 79eb3351..c1387fdd 100644
--- a/modules/VC11WorkspaceCreator.pm
+++ b/modules/VC11WorkspaceCreator.pm
@@ -29,7 +29,7 @@ sub pre_workspace {
print $fh '', $crlf,
'Microsoft Visual Studio Solution File, Format Version 11.00', $crlf;
$self->print_workspace_comment($fh,
- '# Visual Studio 2011', $crlf,
+ '# Visual Studio 2012', $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,
diff --git a/modules/VC12WorkspaceCreator.pm b/modules/VC12WorkspaceCreator.pm
index bed94737..3795ac2e 100644
--- a/modules/VC12WorkspaceCreator.pm
+++ b/modules/VC12WorkspaceCreator.pm
@@ -29,7 +29,7 @@ sub pre_workspace {
print $fh '', $crlf,
'Microsoft Visual Studio Solution File, Format Version 12.00', $crlf;
$self->print_workspace_comment($fh,
- '# Visual Studio 2012', $crlf,
+ '# Visual Studio 2013', $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,