mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
c5440c95c8
- Added support for current default toolset, explitly specified c++17 standard and 8.1 win sdk. - properties were defined via `common_default.props` and `common_default_macros.props` Note: There are 2 files because some properties need to be imported before `Microsoft.Cpp.Default.props` , but other common properties can be imported after but they require marco defined in `Microsoft.Cpp.Default.props`. - Added hidapi and libusb project files to repository to simplify msbuild changes.
103 lines
4.6 KiB
XML
103 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug - LLVM|x64">
|
|
<Configuration>Debug - LLVM</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug - MemLeak|x64">
|
|
<Configuration>Debug - MemLeak</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release - LLVM|x64">
|
|
<Configuration>Release - LLVM</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<RootNamespace>GLGSRender</RootNamespace>
|
|
<ProjectGuid>{3384223A-6D97-4799-9862-359F85312892}</ProjectGuid>
|
|
</PropertyGroup>
|
|
<Import Project="..\common_default.props" />
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<Import Project="..\common_default_macros.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="Shared">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
<Import Project="..\rpcs3_default.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug - MemLeak|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
<Import Project="..\rpcs3_memleak.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug - LLVM|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
<Import Project="..\rpcs3_llvm.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<Import Project="..\rpcs3_release.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release - LLVM|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_release.props" />
|
|
<Import Project="..\rpcs3_llvm.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release - LLVM|x64'">
|
|
<ClCompile />
|
|
<ClCompile />
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="emucore.vcxproj">
|
|
<Project>{c4a10229-4712-4bd2-b63e-50d93c67a038}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Emu\RSX\GL\GLExecutionState.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLOverlays.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLTextOut.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLCommonDecompiler.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLFragmentProgram.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLGSRender.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLProcTable.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLProgramBuffer.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLVertexProgram.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLHelpers.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLRenderTargets.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLTextureCache.h" />
|
|
<ClInclude Include="Emu\RSX\GL\OpenGL.h" />
|
|
<ClInclude Include="Emu\RSX\GL\GLTexture.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Emu\RSX\GL\GLCommonDecompiler.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLFragmentProgram.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLGSRender.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLVertexProgram.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLHelpers.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLRenderTargets.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\OpenGL.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLTexture.cpp" />
|
|
<ClCompile Include="Emu\RSX\GL\GLVertexBuffers.cpp" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |