diff options
-rw-r--r-- | build/vc.common/common.props | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/vc.common/common.props b/build/vc.common/common.props index daf3e46d81..098f490a14 100644 --- a/build/vc.common/common.props +++ b/build/vc.common/common.props @@ -122,7 +122,9 @@ <PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\*.cpp" />
- <ClCompile Include="src\*.c" />
+ <ClCompile Include="src\*.c">
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
+ </ClCompile>
<ClInclude Include="src\*.hpp" />
<ClInclude Include="src\*.h" />
<ResourceCompile Include="res\*.rc" />
|