summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-06-06 13:10:41 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-06-06 13:10:41 +0000
commit853ccdbc22f4a0b3f2d673d7cc3d8f45f0ef2fc0 (patch)
tree009ec4848df183aca313645954202a2e8e0200c8
parent5064032efd2de547600dd3c21cebf6ccb757fa8b (diff)
downloadMPC-853ccdbc22f4a0b3f2d673d7cc3d8f45f0ef2fc0.tar.gz
Wed Jun 6 13:09:54 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* modules/ProjectCreator.pm: Handle tpp files as template files * docs/README Mention vc11
-rw-r--r--ChangeLog8
-rw-r--r--docs/README1
-rw-r--r--modules/ProjectCreator.pm2
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 38f85133..6956cf08 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jun 6 13:09:54 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * modules/ProjectCreator.pm:
+ Handle tpp files as template files
+
+ * docs/README
+ Mention vc11
+
Fri Apr 27 13:31:52 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* templates/vc8platforms.mpt:
diff --git a/docs/README b/docs/README
index 1411eb6a..9ee671d6 100644
--- a/docs/README
+++ b/docs/README
@@ -353,6 +353,7 @@ specific This scope allows assignments that are specific to a
vc8 | | | X | X |
vc9 | | | X | X |
vc10 | | | X | X |
+ vc11 | | | X | X |
wix | | | | X |
? - indicates that this is controled by the MPC_GHS_UNIX
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 113902eb..704d842e 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -193,7 +193,7 @@ my $cppresource = 'resource_files';
## Valid component names within a project along with the valid file extensions
my %cppvc = ('source_files' => [ "\\.cpp", "\\.cxx", "\\.cc", "\\.c", "\\.C", ],
- 'template_files' => [ "_T\\.cpp", "_T\\.cxx", "_T\\.cc", "_T\\.c", "_T\\.C", "_t\\.cpp", "_t\\.cxx", "_t\\.cc", "_t\\.c", "_t\\.C" ],
+ 'template_files' => [ "_T\\.cpp", "_T\\.cxx", "_T\\.cc", "_T\\.c", "_T\\.C", "_t\\.cpp", "_t\\.cxx", "_t\\.cc", "_t\\.c", "_t\\.C", "\\.tpp" ],
'header_files' => [ "\\.h", "\\.hpp", "\\.hxx", "\\.hh", ],
'inline_files' => [ "\\.i", "\\.ipp", "\\.inl", ],
'documentation_files' => [ "README", "readme", "\\.doc", "\\.txt", "\\.html" ],