video_core.vcxproj 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClCompile Include="debug_utils\debug_utils.cpp" />
  23. <ClCompile Include="renderer_opengl\generated\gl_3_2_core.c" />
  24. <ClCompile Include="renderer_opengl\renderer_opengl.cpp" />
  25. <ClCompile Include="renderer_opengl\gl_shader_util.cpp" />
  26. <ClCompile Include="clipper.cpp" />
  27. <ClCompile Include="command_processor.cpp" />
  28. <ClCompile Include="primitive_assembly.cpp" />
  29. <ClCompile Include="rasterizer.cpp" />
  30. <ClCompile Include="utils.cpp" />
  31. <ClCompile Include="vertex_shader.cpp" />
  32. <ClCompile Include="video_core.cpp" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ClInclude Include="clipper.h" />
  36. <ClInclude Include="command_processor.h" />
  37. <ClInclude Include="gpu_debugger.h" />
  38. <ClInclude Include="math.h" />
  39. <ClInclude Include="pica.h" />
  40. <ClInclude Include="primitive_assembly.h" />
  41. <ClInclude Include="rasterizer.h" />
  42. <ClInclude Include="renderer_base.h" />
  43. <ClInclude Include="renderer_opengl\generated\gl_3_2_core.h" />
  44. <ClInclude Include="utils.h" />
  45. <ClInclude Include="vertex_shader.h" />
  46. <ClInclude Include="video_core.h" />
  47. <ClInclude Include="debug_utils\debug_utils.h" />
  48. <ClInclude Include="renderer_opengl\renderer_opengl.h" />
  49. <ClInclude Include="renderer_opengl\gl_shader_util.h" />
  50. <ClInclude Include="renderer_opengl\gl_shaders.h" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Text Include="CMakeLists.txt" />
  54. </ItemGroup>
  55. <PropertyGroup Label="Globals">
  56. <ProjectGuid>{6678D1A3-33A6-48A9-878B-48E5D2903D27}</ProjectGuid>
  57. <RootNamespace>input_common</RootNamespace>
  58. <ProjectName>video_core</ProjectName>
  59. </PropertyGroup>
  60. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  61. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  62. <ConfigurationType>StaticLibrary</ConfigurationType>
  63. <UseDebugLibraries>true</UseDebugLibraries>
  64. <PlatformToolset>v120</PlatformToolset>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  67. <ConfigurationType>StaticLibrary</ConfigurationType>
  68. <UseDebugLibraries>true</UseDebugLibraries>
  69. <PlatformToolset>v120</PlatformToolset>
  70. </PropertyGroup>
  71. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  72. <ConfigurationType>StaticLibrary</ConfigurationType>
  73. <UseDebugLibraries>false</UseDebugLibraries>
  74. <PlatformToolset>v120</PlatformToolset>
  75. </PropertyGroup>
  76. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  77. <ConfigurationType>StaticLibrary</ConfigurationType>
  78. <UseDebugLibraries>false</UseDebugLibraries>
  79. <PlatformToolset>v120</PlatformToolset>
  80. </PropertyGroup>
  81. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  82. <ImportGroup Label="ExtensionSettings">
  83. </ImportGroup>
  84. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  85. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  86. <Import Project="..\..\vsprops\Base.props" />
  87. <Import Project="..\..\vsprops\code_generation_debug.props" />
  88. <Import Project="..\..\vsprops\optimization_debug.props" />
  89. <Import Project="..\..\vsprops\externals.props" />
  90. </ImportGroup>
  91. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  92. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  93. <Import Project="..\..\vsprops\Base.props" />
  94. <Import Project="..\..\vsprops\code_generation_debug.props" />
  95. <Import Project="..\..\vsprops\optimization_debug.props" />
  96. <Import Project="..\..\vsprops\externals.props" />
  97. </ImportGroup>
  98. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  99. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  100. <Import Project="..\..\vsprops\Base.props" />
  101. <Import Project="..\..\vsprops\code_generation_release.props" />
  102. <Import Project="..\..\vsprops\optimization_release.props" />
  103. <Import Project="..\..\vsprops\externals.props" />
  104. </ImportGroup>
  105. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  106. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  107. <Import Project="..\..\vsprops\Base.props" />
  108. <Import Project="..\..\vsprops\code_generation_release.props" />
  109. <Import Project="..\..\vsprops\optimization_release.props" />
  110. <Import Project="..\..\vsprops\externals.props" />
  111. </ImportGroup>
  112. <PropertyGroup Label="UserMacros" />
  113. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
  114. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
  115. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
  116. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
  117. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  118. <ClCompile />
  119. <Link>
  120. <GenerateDebugInformation>true</GenerateDebugInformation>
  121. </Link>
  122. </ItemDefinitionGroup>
  123. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  124. <ClCompile />
  125. <Link>
  126. <GenerateDebugInformation>true</GenerateDebugInformation>
  127. </Link>
  128. </ItemDefinitionGroup>
  129. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  130. <ClCompile />
  131. <Link>
  132. <GenerateDebugInformation>true</GenerateDebugInformation>
  133. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  134. <OptimizeReferences>true</OptimizeReferences>
  135. </Link>
  136. <ClCompile />
  137. <ClCompile />
  138. <ClCompile />
  139. </ItemDefinitionGroup>
  140. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  141. <ClCompile />
  142. <Link>
  143. <GenerateDebugInformation>true</GenerateDebugInformation>
  144. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  145. <OptimizeReferences>true</OptimizeReferences>
  146. </Link>
  147. </ItemDefinitionGroup>
  148. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  149. <ImportGroup Label="ExtensionTargets">
  150. </ImportGroup>
  151. </Project>