video_core.vcxproj 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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="renderer_opengl\renderer_opengl.cpp" />
  23. <ClCompile Include="utils.cpp" />
  24. <ClCompile Include="video_core.cpp" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ClInclude Include="renderer_base.h" />
  28. <ClInclude Include="renderer_opengl\renderer_opengl.h" />
  29. <ClInclude Include="utils.h" />
  30. <ClInclude Include="video_core.h" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Text Include="CMakeLists.txt" />
  34. </ItemGroup>
  35. <PropertyGroup Label="Globals">
  36. <ProjectGuid>{6678D1A3-33A6-48A9-878B-48E5D2903D27}</ProjectGuid>
  37. <RootNamespace>input_common</RootNamespace>
  38. <ProjectName>video_core</ProjectName>
  39. </PropertyGroup>
  40. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  42. <ConfigurationType>StaticLibrary</ConfigurationType>
  43. <UseDebugLibraries>true</UseDebugLibraries>
  44. <PlatformToolset>v120</PlatformToolset>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  47. <ConfigurationType>StaticLibrary</ConfigurationType>
  48. <UseDebugLibraries>true</UseDebugLibraries>
  49. <PlatformToolset>v120</PlatformToolset>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  52. <ConfigurationType>StaticLibrary</ConfigurationType>
  53. <UseDebugLibraries>false</UseDebugLibraries>
  54. <PlatformToolset>v120</PlatformToolset>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  57. <ConfigurationType>StaticLibrary</ConfigurationType>
  58. <UseDebugLibraries>false</UseDebugLibraries>
  59. <PlatformToolset>v120</PlatformToolset>
  60. </PropertyGroup>
  61. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  62. <ImportGroup Label="ExtensionSettings">
  63. </ImportGroup>
  64. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  65. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  66. <Import Project="..\..\vsprops\Base.props" />
  67. <Import Project="..\..\vsprops\code_generation_debug.props" />
  68. <Import Project="..\..\vsprops\optimization_debug.props" />
  69. <Import Project="..\..\vsprops\externals.props" />
  70. </ImportGroup>
  71. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  72. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  73. <Import Project="..\..\vsprops\Base.props" />
  74. <Import Project="..\..\vsprops\code_generation_debug.props" />
  75. <Import Project="..\..\vsprops\optimization_debug.props" />
  76. <Import Project="..\..\vsprops\externals.props" />
  77. </ImportGroup>
  78. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  79. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  80. <Import Project="..\..\vsprops\Base.props" />
  81. <Import Project="..\..\vsprops\code_generation_release.props" />
  82. <Import Project="..\..\vsprops\optimization_release.props" />
  83. <Import Project="..\..\vsprops\externals.props" />
  84. </ImportGroup>
  85. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  86. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  87. <Import Project="..\..\vsprops\Base.props" />
  88. <Import Project="..\..\vsprops\code_generation_release.props" />
  89. <Import Project="..\..\vsprops\optimization_release.props" />
  90. <Import Project="..\..\vsprops\externals.props" />
  91. </ImportGroup>
  92. <PropertyGroup Label="UserMacros" />
  93. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
  94. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
  95. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
  96. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
  97. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  98. <ClCompile />
  99. <Link>
  100. <GenerateDebugInformation>true</GenerateDebugInformation>
  101. </Link>
  102. </ItemDefinitionGroup>
  103. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  104. <ClCompile />
  105. <Link>
  106. <GenerateDebugInformation>true</GenerateDebugInformation>
  107. </Link>
  108. </ItemDefinitionGroup>
  109. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  110. <ClCompile />
  111. <Link>
  112. <GenerateDebugInformation>true</GenerateDebugInformation>
  113. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  114. <OptimizeReferences>true</OptimizeReferences>
  115. </Link>
  116. <ClCompile />
  117. <ClCompile />
  118. <ClCompile />
  119. </ItemDefinitionGroup>
  120. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  121. <ClCompile />
  122. <Link>
  123. <GenerateDebugInformation>true</GenerateDebugInformation>
  124. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  125. <OptimizeReferences>true</OptimizeReferences>
  126. </Link>
  127. </ItemDefinitionGroup>
  128. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  129. <ImportGroup Label="ExtensionTargets">
  130. </ImportGroup>
  131. </Project>