summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChad Elliott <elliottc@objectcomputing.com>2019-06-28 11:01:15 -0500
committerChad Elliott <elliottc@objectcomputing.com>2019-06-28 11:01:15 -0500
commitc8e2f48e87161dac7cf8780dbcbf84b1db34ee6c (patch)
treeb091f82ca635140d1d38050942ab38a417ba95c3 /templates
parent3a06d5612ae4f5c9f579acd7c85f460aed8c6c96 (diff)
downloadMPC-c8e2f48e87161dac7cf8780dbcbf84b1db34ee6c.tar.gz
Fri Jun 28 15:52:37 UTC 2019 Chad Elliott <elliottc@objectcomputing.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/vc10.mpd10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/vc10.mpd b/templates/vc10.mpd
index 00b7bb9b..7c4358c2 100644
--- a/templates/vc10.mpd
+++ b/templates/vc10.mpd
@@ -787,6 +787,7 @@
<%if(template_files)%>
<ItemGroup>
<%foreach(uniq(template_files))%>
+<%if(!is_custom_input(template_file))%>
<ClCompile Include="<%template_file%>">
<%foreach(platforms)%>
<%foreach(configurations)%>
@@ -794,13 +795,16 @@
<%endfor%>
<%endfor%>
</ClCompile>
+<%endif%>
<%endfor%>
</ItemGroup>
<%endif%>
<%if(header_files)%>
<ItemGroup>
<%foreach(uniq(header_files))%>
+<%if(!is_custom_input(header_file))%>
<ClInclude Include="<%header_file%>" />
+<%endif%>
<%endfor%>
</ItemGroup>
<%endif%>
@@ -831,13 +835,16 @@
<%if(inline_files)%>
<ItemGroup>
<%foreach(uniq(inline_files))%>
+<%if(!is_custom_input(inline_file))%>
<None Include="<%inline_file%>" />
+<%endif%>
<%endfor%>
</ItemGroup>
<%endif%>
<%if(documentation_files)%>
<ItemGroup>
<%foreach(uniq(documentation_files))%>
+<%if(!is_custom_input(documentation_file))%>
<CustomBuild Include="<%documentation_file%>">
<FileType>Document</FileType>
<%foreach(platforms)%>
@@ -846,13 +853,16 @@
<%endfor%>
<%endfor%>
</CustomBuild>
+<%endif%>
<%endfor%>
</ItemGroup>
<%endif%>
<%if(resource_files && !type_is_static)%>
<ItemGroup>
<%foreach(uniq(resource_files))%>
+<%if(!is_custom_input(resource_file))%>
<<%if(ends_with(resource_file,\.rc))%>ResourceCompile<%else%>None<%endif%> Include="<%resource_file%>" />
+<%endif%>
<%endfor%>
</ItemGroup>
<%endif%>