DiscIO.vcxproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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|x64">
  5. <Configuration>Debug</Configuration>
  6. <Platform>x64</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|x64">
  9. <Configuration>Release</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{160BDC25-5626-4B0D-BDD8-2953D9777FB5}</ProjectGuid>
  15. </PropertyGroup>
  16. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  17. <PropertyGroup Label="Configuration">
  18. <ConfigurationType>StaticLibrary</ConfigurationType>
  19. <PlatformToolset>v120</PlatformToolset>
  20. <CharacterSet>Unicode</CharacterSet>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  23. <UseDebugLibraries>true</UseDebugLibraries>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  26. <UseDebugLibraries>false</UseDebugLibraries>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  29. <ImportGroup Label="ExtensionSettings">
  30. </ImportGroup>
  31. <ImportGroup Label="PropertySheets">
  32. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  33. <Import Project="..\..\VSProps\Base.props" />
  34. <Import Project="..\..\VSProps\PCHUse.props" />
  35. </ImportGroup>
  36. <PropertyGroup Label="UserMacros" />
  37. <ItemGroup>
  38. <ClCompile Include="Blob.cpp" />
  39. <ClCompile Include="CISOBlob.cpp" />
  40. <ClCompile Include="CompressedBlob.cpp" />
  41. <ClCompile Include="DiscScrubber.cpp" />
  42. <ClCompile Include="DriveBlob.cpp" />
  43. <ClCompile Include="FileBlob.cpp" />
  44. <ClCompile Include="FileMonitor.cpp" />
  45. <ClCompile Include="Filesystem.cpp" />
  46. <ClCompile Include="FileSystemGCWii.cpp" />
  47. <ClCompile Include="NANDContentLoader.cpp" />
  48. <ClCompile Include="VolumeCommon.cpp" />
  49. <ClCompile Include="VolumeCreator.cpp" />
  50. <ClCompile Include="VolumeDirectory.cpp" />
  51. <ClCompile Include="VolumeGC.cpp" />
  52. <ClCompile Include="VolumeWad.cpp" />
  53. <ClCompile Include="VolumeWiiCrypted.cpp" />
  54. <ClCompile Include="WbfsBlob.cpp" />
  55. <ClCompile Include="WiiWad.cpp" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <ClInclude Include="Blob.h" />
  59. <ClInclude Include="CISOBlob.h" />
  60. <ClInclude Include="CompressedBlob.h" />
  61. <ClInclude Include="DiscScrubber.h" />
  62. <ClInclude Include="DriveBlob.h" />
  63. <ClInclude Include="FileBlob.h" />
  64. <ClInclude Include="FileMonitor.h" />
  65. <ClInclude Include="Filesystem.h" />
  66. <ClInclude Include="FileSystemGCWii.h" />
  67. <ClInclude Include="NANDContentLoader.h" />
  68. <ClInclude Include="Volume.h" />
  69. <ClInclude Include="VolumeCreator.h" />
  70. <ClInclude Include="VolumeDirectory.h" />
  71. <ClInclude Include="VolumeGC.h" />
  72. <ClInclude Include="VolumeWad.h" />
  73. <ClInclude Include="VolumeWiiCrypted.h" />
  74. <ClInclude Include="WbfsBlob.h" />
  75. <ClInclude Include="WiiWad.h" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Text Include="CMakeLists.txt" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="$(ExternalsDir)polarssl\visualc\PolarSSL.vcxproj">
  82. <Project>{bdb6578b-0691-4e80-a46c-df21639fd3b8}</Project>
  83. </ProjectReference>
  84. <ProjectReference Include="$(ExternalsDir)zlib\zlib.vcxproj">
  85. <Project>{ff213b23-2c26-4214-9f88-85271e557e87}</Project>
  86. </ProjectReference>
  87. <ProjectReference Include="$(CoreDir)Common\Common.vcxproj">
  88. <Project>{2e6c348c-c75c-4d94-8d1e-9c1fcbf3efe4}</Project>
  89. </ProjectReference>
  90. </ItemGroup>
  91. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  92. <ImportGroup Label="ExtensionTargets">
  93. </ImportGroup>
  94. </Project>