vcxproj.template 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. %%CONFS%%
  5. </ItemGroup>
  6. <PropertyGroup Label="Globals">
  7. <ProjectGuid>{%%UUID%%}</ProjectGuid>
  8. <RootNamespace>godot</RootNamespace>
  9. <Keyword>MakeFileProj</Keyword>
  10. <VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
  11. </PropertyGroup>
  12. %%PROPERTIES%%
  13. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  14. <PropertyGroup Label="Configuration">
  15. <ConfigurationType>Makefile</ConfigurationType>
  16. <UseOfMfc>false</UseOfMfc>
  17. <PlatformToolset>v143</PlatformToolset>
  18. <OutDir>$(SolutionDir)\bin\$(GodotPlatform)\$(GodotConfiguration)\</OutDir>
  19. <IntDir>obj\$(GodotPlatform)\$(GodotConfiguration)\</IntDir>
  20. <LayoutDir>$(OutDir)\Layout</LayoutDir>
  21. </PropertyGroup>
  22. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  23. <ImportGroup Label="ExtensionSettings">
  24. </ImportGroup>
  25. <ImportGroup Label="PropertySheets">
  26. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props')" Label="LocalAppDataPlatform" />
  27. </ImportGroup>
  28. <PropertyGroup Label="UserMacros" />
  29. <PropertyGroup>
  30. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  31. <ActiveProjectItemList></ActiveProjectItemList>
  32. </PropertyGroup>
  33. %%IMPORTS%%
  34. <ItemGroup Condition="'$(IncludeListImported)'==''">
  35. %%DEFAULT_ITEMS%%
  36. </ItemGroup>
  37. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  38. <ImportGroup Label="ExtensionTargets">
  39. </ImportGroup>
  40. </Project>
  41. <!-- CHECKSUM
  42. %%HASH%%
  43. -->