You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
4.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <PropertyGroup Label="Globals">
  22. <ProjectGuid>{02042A76-37B5-4C1F-9D3D-A34F29DDFDB0}</ProjectGuid>
  23. </PropertyGroup>
  24. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  26. <ConfigurationType>Application</ConfigurationType>
  27. <UseDebugLibraries>true</UseDebugLibraries>
  28. <PlatformToolset>v140</PlatformToolset>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  31. <ConfigurationType>Application</ConfigurationType>
  32. <UseDebugLibraries>false</UseDebugLibraries>
  33. <PlatformToolset>v140</PlatformToolset>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  36. <ConfigurationType>Application</ConfigurationType>
  37. <UseDebugLibraries>true</UseDebugLibraries>
  38. <PlatformToolset>v140</PlatformToolset>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  41. <ConfigurationType>Application</ConfigurationType>
  42. <UseDebugLibraries>false</UseDebugLibraries>
  43. <PlatformToolset>v140</PlatformToolset>
  44. </PropertyGroup>
  45. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  46. <ImportGroup Label="ExtensionSettings">
  47. </ImportGroup>
  48. <ImportGroup Label="Shared">
  49. </ImportGroup>
  50. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  51. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  52. </ImportGroup>
  53. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  54. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  55. </ImportGroup>
  56. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  57. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  58. </ImportGroup>
  59. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  60. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  61. </ImportGroup>
  62. <PropertyGroup Label="UserMacros" />
  63. <PropertyGroup />
  64. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  65. <PostBuildEvent>
  66. <Command>editbin /subsystem:console $(OutDir)$(ProjectName).exe</Command>
  67. </PostBuildEvent>
  68. </ItemDefinitionGroup>
  69. <ItemGroup>
  70. <ClCompile Include="FBO.cpp" />
  71. <ClCompile Include="FullScreenQuad.cpp" />
  72. <ClCompile Include="GPUProgram.cpp" />
  73. <ClCompile Include="main.cpp" />
  74. <ClCompile Include="ObjModel.cpp" />
  75. <ClCompile Include="utils.cpp" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ClInclude Include="FBO.h" />
  79. <ClInclude Include="FullScreenQuad.h" />
  80. <ClInclude Include="GPUProgram.h" />
  81. <ClInclude Include="ObjModel.h" />
  82. <ClInclude Include="utils.h" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <None Include="res\shader\skybox_reflect.fs" />
  86. <None Include="res\shader\skybox_reflect.vs" />
  87. </ItemGroup>
  88. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  89. <ImportGroup Label="ExtensionTargets">
  90. </ImportGroup>
  91. </Project>