diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-04 13:08:31 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-04 13:08:31 +0000 |
commit | 9248800b7ae5f46ff1646a0deaa12e7de7c325ea (patch) | |
tree | 493301b06f932f196f9aeb03755a636da1cd6ff9 /build/vc.common | |
parent | de1841e8600420cf3cf35cb73d6e0226a9519687 (diff) |
code in C cannot share precompiled headers with C++ files
git-svn-id: http://svn.miranda-ng.org/main/trunk@13996 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'build/vc.common')
-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" />
|