x86.props 1.2 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ImportGroup Label="PropertySheets" />
  4. <PropertyGroup Label="UserMacros">
  5. <CfgDir>..\..\build\windows-x86-$(Cfg)</CfgDir>
  6. <IncDir>$([System.IO.Path]::GetFullPath($(ProjectDir)\$(CfgDir)\inc))</IncDir>
  7. <ObjDir>$([System.IO.Path]::GetFullPath($(ProjectDir)\$(CfgDir)\obj))</ObjDir>
  8. <BinDir>$([System.IO.Path]::GetFullPath($(ProjectDir)\$(CfgDir)\bin))</BinDir>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <BuildMacro Include="CfgDir">
  12. <Value>$(CfgDir)</Value>
  13. <EnvironmentVariable>true</EnvironmentVariable>
  14. </BuildMacro>
  15. <BuildMacro Include="BinDir">
  16. <Value>$(BinDir)</Value>
  17. <EnvironmentVariable>true</EnvironmentVariable>
  18. </BuildMacro>
  19. <BuildMacro Include="IncDir">
  20. <Value>$(IncDir)</Value>
  21. <EnvironmentVariable>true</EnvironmentVariable>
  22. </BuildMacro>
  23. <BuildMacro Include="ObjDir">
  24. <Value>$(ObjDir)</Value>
  25. <EnvironmentVariable>true</EnvironmentVariable>
  26. </BuildMacro>
  27. </ItemGroup>
  28. </Project>