DxLibTestProj1.vcxproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{F39757A1-8ED6-414D-863A-8953245535D1}</ProjectGuid>
  15. <RootNamespace>DxLibTestProj1</RootNamespace>
  16. </PropertyGroup>
  17. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  19. <ConfigurationType>Application</ConfigurationType>
  20. <UseDebugLibraries>true</UseDebugLibraries>
  21. <PlatformToolset>v120</PlatformToolset>
  22. <CharacterSet>MultiByte</CharacterSet>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  25. <ConfigurationType>Application</ConfigurationType>
  26. <UseDebugLibraries>false</UseDebugLibraries>
  27. <PlatformToolset>v120</PlatformToolset>
  28. <WholeProgramOptimization>true</WholeProgramOptimization>
  29. <CharacterSet>MultiByte</CharacterSet>
  30. </PropertyGroup>
  31. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  32. <ImportGroup Label="ExtensionSettings">
  33. </ImportGroup>
  34. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  35. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  36. </ImportGroup>
  37. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  38. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  39. </ImportGroup>
  40. <PropertyGroup Label="UserMacros" />
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  42. <IncludePath>$(IncludePath)</IncludePath>
  43. <LibraryPath>.\DxLib;$(LibraryPath)</LibraryPath>
  44. </PropertyGroup>
  45. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  46. <ClCompile>
  47. <WarningLevel>Level3</WarningLevel>
  48. <Optimization>Disabled</Optimization>
  49. <SDLCheck>true</SDLCheck>
  50. </ClCompile>
  51. <Link>
  52. <GenerateDebugInformation>true</GenerateDebugInformation>
  53. </Link>
  54. </ItemDefinitionGroup>
  55. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  56. <ClCompile>
  57. <WarningLevel>Level3</WarningLevel>
  58. <Optimization>MaxSpeed</Optimization>
  59. <FunctionLevelLinking>true</FunctionLevelLinking>
  60. <IntrinsicFunctions>true</IntrinsicFunctions>
  61. <SDLCheck>true</SDLCheck>
  62. </ClCompile>
  63. <Link>
  64. <GenerateDebugInformation>true</GenerateDebugInformation>
  65. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  66. <OptimizeReferences>true</OptimizeReferences>
  67. </Link>
  68. </ItemDefinitionGroup>
  69. <ItemGroup>
  70. <ClInclude Include="public.h" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ClCompile Include="App\main.cpp" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include=".gitignore" />
  77. <None Include="README.md" />
  78. </ItemGroup>
  79. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  80. <ImportGroup Label="ExtensionTargets">
  81. </ImportGroup>
  82. </Project>