zeroc.icebuilder.msbuild.cpp.props 804 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (c) 2009-2018 ZeroC, Inc. All rights reserved. -->
  3. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  4. <!-- default values -->
  5. <ItemDefinitionGroup>
  6. <SliceCompile>
  7. <OutputDir>$(IntDir)</OutputDir>
  8. <HeaderExt>h</HeaderExt>
  9. <SourceExt>cpp</SourceExt>
  10. </SliceCompile>
  11. </ItemDefinitionGroup>
  12. <Choose>
  13. <When Condition="'$(VisualStudioVersion)' &gt;= '14.0'">
  14. <PropertyGroup>
  15. <IceCppMapping>cpp11</IceCppMapping>
  16. </PropertyGroup>
  17. </When>
  18. <Otherwise>
  19. <PropertyGroup>
  20. <IceCppMapping>cpp98</IceCppMapping>
  21. </PropertyGroup>
  22. </Otherwise>
  23. </Choose>
  24. </Project>