pugixml/msvc/pugixml.props

30 lines
1.6 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Some auxiliary properties. Prefix "_" make them invisible to Visual Studio user -->
<PropertyGroup>
2015-11-12 18:54:11 +03:00
<_PUGI_Rtl_Type Condition="'$(PUGI_Use_Static_Rtl)'=='True'">static</_PUGI_Rtl_Type>
<_PUGI_Rtl_Type Condition="'$(PUGI_Use_Static_Rtl)'!='True'">dynamic</_PUGI_Rtl_Type>
</PropertyGroup>
<PropertyGroup>
2015-11-12 18:54:11 +03:00
<!-- PUGI_CommonPropsPrefix contain only part of PropertySheet path:
Absolute path to directory and first part of file name -->
<PUGI_CommonPropsPrefix>$(ProjectDir)props\common</PUGI_CommonPropsPrefix>
</PropertyGroup>
<PropertyGroup>
2015-11-12 18:54:11 +03:00
<PUGI_Props_Common >$(PUGI_CommonPropsPrefix).props</PUGI_Props_Common>
<PUGI_Props_CommonConf >$(PUGI_CommonPropsPrefix).$(Configuration.ToLower()).props</PUGI_Props_CommonConf>
<PUGI_Props_CommonPlatf >$(PUGI_CommonPropsPrefix).$(Platform.ToLower()).props</PUGI_Props_CommonPlatf>
<PUGI_Props_CommonConfRtl>$(PUGI_CommonPropsPrefix).$(Configuration.ToLower()).$(_PUGI_Rtl_Type).props</PUGI_Props_CommonConfRtl>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
2015-11-12 18:54:11 +03:00
<Import Condition="exists('$(PUGI_Props_Common)')" Project="$(PUGI_Props_Common)" />
<Import Condition="exists('$(PUGI_Props_CommonConf)')" Project="$(PUGI_Props_CommonConf)" />
<Import Condition="exists('$(PUGI_Props_CommonPlatf)')" Project="$(PUGI_Props_CommonPlatf)" />
<Import Condition="exists('$(PUGI_Props_CommonConfRtl)')" Project="$(PUGI_Props_CommonConfRtl)" />
</ImportGroup>
</Project>