summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Elliott <elliottc@objectcomputing.com>2023-04-26 08:25:25 -0500
committerChad Elliott <elliottc@objectcomputing.com>2023-04-26 08:25:25 -0500
commit62c44927b0616a85e9b5afed5975678d97343c18 (patch)
treef45a8cdc36c703a9c41d2730e3a2801079c1a053
parent5f017a0a36c1b98557d39a68689f20c7909c668e (diff)
downloadMPC-62c44927b0616a85e9b5afed5975678d97343c18.tar.gz
Support .ixx as an inline file extension.
-rw-r--r--modules/ProjectCreator.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index ea32c143..0ee9d27d 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -194,7 +194,7 @@ my $cppresource = 'resource_files';
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", "\\.tpp" ],
'header_files' => [ "\\.h", "\\.hpp", "\\.hxx", "\\.hh", ],
- 'inline_files' => [ "\\.i", "\\.ipp", "\\.inl", ],
+ 'inline_files' => [ "\\.i", "\\.ipp", "\\.ixx", "\\.inl", ],
'documentation_files' => [ "README", "readme", "\\.doc", "\\.txt", "\\.html" ],
$cppresource => [ "\\.rc", ],
);