2013-12-07 20:12:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-10-19 09:27:57 +00:00
|
|
|
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2011-01-27 05:01:00 +00:00
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Label="Globals">
|
2013-10-19 09:27:57 +00:00
|
|
|
<ProjectGuid>{EC1A314C-5588-4506-9C1E-2E58E5817F75}</ProjectGuid>
|
2011-01-27 05:01:00 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2013-10-19 09:27:57 +00:00
|
|
|
<PropertyGroup Label="Configuration">
|
2011-01-31 01:28:32 +00:00
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
2013-10-19 09:27:57 +00:00
|
|
|
<PlatformToolset>v120</PlatformToolset>
|
2011-01-27 05:01:00 +00:00
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
2011-01-27 05:01:00 +00:00
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
</PropertyGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
2011-01-27 05:01:00 +00:00
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
2011-01-27 10:41:26 +00:00
|
|
|
</PropertyGroup>
|
2011-01-27 05:01:00 +00:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
</ImportGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
<ImportGroup Label="PropertySheets">
|
2011-01-27 05:01:00 +00:00
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
2013-10-07 22:47:28 +00:00
|
|
|
<Import Project="..\..\..\VSProps\Base.props" />
|
|
|
|
<Import Project="..\..\..\VSProps\PrecompiledHeader.props" />
|
2011-01-27 10:41:26 +00:00
|
|
|
</ImportGroup>
|
2011-01-27 05:01:00 +00:00
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<ItemGroup>
|
|
|
|
<ClCompile Include="Src\FramebufferManager.cpp" />
|
|
|
|
<ClCompile Include="Src\GLUtil.cpp" />
|
|
|
|
<ClCompile Include="Src\main.cpp" />
|
|
|
|
<ClCompile Include="Src\NativeVertexFormat.cpp" />
|
2012-06-19 21:05:39 +00:00
|
|
|
<ClCompile Include="Src\PerfQuery.cpp" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClCompile Include="Src\PostProcessing.cpp" />
|
2011-12-09 22:28:59 +00:00
|
|
|
<ClCompile Include="Src\ProgramShaderCache.cpp" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClCompile Include="Src\RasterFont.cpp" />
|
|
|
|
<ClCompile Include="Src\Render.cpp" />
|
2013-02-20 00:22:38 +00:00
|
|
|
<ClCompile Include="Src\SamplerCache.cpp" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClCompile Include="Src\stdafx.cpp">
|
2013-10-19 09:27:57 +00:00
|
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
2011-01-27 05:01:00 +00:00
|
|
|
</ClCompile>
|
2013-10-19 09:27:57 +00:00
|
|
|
<ClCompile Include="Src\StreamBuffer.cpp" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClCompile Include="Src\TextureCache.cpp" />
|
|
|
|
<ClCompile Include="Src\TextureConverter.cpp" />
|
|
|
|
<ClCompile Include="Src\VertexManager.cpp" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="Src\FramebufferManager.h" />
|
|
|
|
<ClInclude Include="Src\Globals.h" />
|
|
|
|
<ClInclude Include="Src\GLUtil.h" />
|
|
|
|
<ClInclude Include="Src\main.h" />
|
2012-06-19 21:05:39 +00:00
|
|
|
<ClInclude Include="Src\PerfQuery.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClInclude Include="Src\PostProcessing.h" />
|
2011-12-09 22:28:59 +00:00
|
|
|
<ClInclude Include="Src\ProgramShaderCache.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClInclude Include="Src\RasterFont.h" />
|
|
|
|
<ClInclude Include="Src\Render.h" />
|
2013-10-08 04:52:18 +00:00
|
|
|
<ClInclude Include="Src\SamplerCache.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClInclude Include="Src\stdafx.h" />
|
2013-10-19 09:27:57 +00:00
|
|
|
<ClInclude Include="Src\StreamBuffer.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
<ClInclude Include="Src\TextureCache.h" />
|
|
|
|
<ClInclude Include="Src\TextureConverter.h" />
|
|
|
|
<ClInclude Include="Src\VertexManager.h" />
|
2011-01-31 01:28:32 +00:00
|
|
|
<ClInclude Include="Src\VideoBackend.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
<Text Include="CMakeLists.txt" />
|
2011-01-27 05:01:00 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
<ProjectReference Include="..\..\..\..\Externals\GLew\glew.vcxproj">
|
|
|
|
<Project>{2a3f751d-69e9-45f2-9199-9a00bfb6cc72}</Project>
|
|
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="..\..\..\..\Externals\wxWidgets3\build\msw\wx_base.vcxproj">
|
|
|
|
<Project>{1c8436c9-dbaf-42be-83bc-cf3ec9175abe}</Project>
|
|
|
|
</ProjectReference>
|
2013-10-09 10:49:00 +00:00
|
|
|
<ProjectReference Include="..\..\..\..\Externals\zlib\zlib.vcxproj">
|
2013-10-19 09:27:57 +00:00
|
|
|
<Project>{ff213b23-2c26-4214-9f88-85271e557e87}</Project>
|
2011-01-27 05:01:00 +00:00
|
|
|
</ProjectReference>
|
2013-10-19 09:27:57 +00:00
|
|
|
<ProjectReference Include="..\..\..\Core\VideoCommon\VideoCommon.vcxproj">
|
|
|
|
<Project>{3de9ee35-3e91-4f27-a014-2866ad8c3fe3}</Project>
|
2011-01-27 05:01:00 +00:00
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
</ImportGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
</Project>
|