diff options
author | l0calh05t <l0calh05t@gmx.net> | 2015-10-07 12:17:03 (GMT) |
---|---|---|
committer | l0calh05t <l0calh05t@gmx.net> | 2015-10-07 13:08:14 (GMT) |
commit | 838ca6567f3a894a3d298c963f122304718fe6af (patch) | |
tree | 3f7bad488f3899ba26ca7f63080ebee9145c6051 /src/cv2pdb.vcxproj | |
parent | 008141938cfac25945e1d5b97317a0964c9670cc (diff) | |
download | cv2pdb-838ca6567f3a894a3d298c963f122304718fe6af.zip cv2pdb-838ca6567f3a894a3d298c963f122304718fe6af.tar.gz cv2pdb-838ca6567f3a894a3d298c963f122304718fe6af.tar.bz2 |
fixes #11 (missing ExcludedFromBuild for x64 asm file in Win32 Platform)
Diffstat (limited to 'src/cv2pdb.vcxproj')
-rw-r--r-- | src/cv2pdb.vcxproj | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cv2pdb.vcxproj b/src/cv2pdb.vcxproj index 7ec6b6f..b9cca36 100644 --- a/src/cv2pdb.vcxproj +++ b/src/cv2pdb.vcxproj @@ -203,7 +203,10 @@ <ClInclude Include="symutil.h" />
</ItemGroup>
<ItemGroup>
- <MASM Include="cvt80to64.asm" />
+ <MASM Include="cvt80to64.asm">
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
+ </MASM>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
|