mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
ac5c82b36b
This file is pretty small now that it doesn't handle Wii partitions anymore, so let's move its contents to Volume.cpp. This is also more consistent with how blob creation works.
96 lines
4.0 KiB
XML
96 lines
4.0 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|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{160BDC25-5626-4B0D-BDD8-2953D9777FB5}</ProjectGuid>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<PlatformToolset>v140</PlatformToolset>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
<Import Project="..\..\VSProps\Base.props" />
|
|
<Import Project="..\..\VSProps\PCHUse.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<ItemGroup>
|
|
<ClCompile Include="Blob.cpp" />
|
|
<ClCompile Include="CISOBlob.cpp" />
|
|
<ClCompile Include="CompressedBlob.cpp" />
|
|
<ClCompile Include="DiscScrubber.cpp" />
|
|
<ClCompile Include="DriveBlob.cpp" />
|
|
<ClCompile Include="Enums.cpp" />
|
|
<ClCompile Include="FileBlob.cpp" />
|
|
<ClCompile Include="Filesystem.cpp" />
|
|
<ClCompile Include="FileSystemGCWii.cpp" />
|
|
<ClCompile Include="NANDContentLoader.cpp" />
|
|
<ClCompile Include="NANDImporter.cpp" />
|
|
<ClCompile Include="TGCBlob.cpp" />
|
|
<ClCompile Include="Volume.cpp" />
|
|
<ClCompile Include="VolumeDirectory.cpp" />
|
|
<ClCompile Include="VolumeGC.cpp" />
|
|
<ClCompile Include="VolumeWad.cpp" />
|
|
<ClCompile Include="VolumeWiiCrypted.cpp" />
|
|
<ClCompile Include="WbfsBlob.cpp" />
|
|
<ClCompile Include="WiiWad.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Blob.h" />
|
|
<ClInclude Include="CISOBlob.h" />
|
|
<ClInclude Include="CompressedBlob.h" />
|
|
<ClInclude Include="DiscScrubber.h" />
|
|
<ClInclude Include="DriveBlob.h" />
|
|
<ClInclude Include="Enums.h" />
|
|
<ClInclude Include="FileBlob.h" />
|
|
<ClInclude Include="Filesystem.h" />
|
|
<ClInclude Include="FileSystemGCWii.h" />
|
|
<ClInclude Include="NANDContentLoader.h" />
|
|
<ClInclude Include="NANDImporter.h" />
|
|
<ClInclude Include="TGCBlob.h" />
|
|
<ClInclude Include="Volume.h" />
|
|
<ClInclude Include="VolumeDirectory.h" />
|
|
<ClInclude Include="VolumeGC.h" />
|
|
<ClInclude Include="VolumeWad.h" />
|
|
<ClInclude Include="VolumeWiiCrypted.h" />
|
|
<ClInclude Include="WbfsBlob.h" />
|
|
<ClInclude Include="WiiWad.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Text Include="CMakeLists.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(ExternalsDir)mbedtls\mbedTLS.vcxproj">
|
|
<Project>{bdb6578b-0691-4e80-a46c-df21639fd3b8}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="$(ExternalsDir)zlib\zlib.vcxproj">
|
|
<Project>{ff213b23-2c26-4214-9f88-85271e557e87}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="$(CoreDir)Common\Common.vcxproj">
|
|
<Project>{2e6c348c-c75c-4d94-8d1e-9c1fcbf3efe4}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |