Porcesses.vcxproj 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" 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. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClCompile Include="Processe.c" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ClInclude Include="Header.h" />
  26. </ItemGroup>
  27. <PropertyGroup Label="Globals">
  28. <VCProjectVersion>16.0</VCProjectVersion>
  29. <Keyword>Win32Proj</Keyword>
  30. <ProjectGuid>{ef3e9b41-a28f-4f49-8a74-65ecaa4d24f4}</ProjectGuid>
  31. <RootNamespace>Porcesses</RootNamespace>
  32. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  33. </PropertyGroup>
  34. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  36. <ConfigurationType>Application</ConfigurationType>
  37. <UseDebugLibraries>true</UseDebugLibraries>
  38. <PlatformToolset>v143</PlatformToolset>
  39. <CharacterSet>Unicode</CharacterSet>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  42. <ConfigurationType>Application</ConfigurationType>
  43. <UseDebugLibraries>false</UseDebugLibraries>
  44. <PlatformToolset>v143</PlatformToolset>
  45. <WholeProgramOptimization>true</WholeProgramOptimization>
  46. <CharacterSet>Unicode</CharacterSet>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  49. <ConfigurationType>Application</ConfigurationType>
  50. <UseDebugLibraries>true</UseDebugLibraries>
  51. <PlatformToolset>v143</PlatformToolset>
  52. <CharacterSet>Unicode</CharacterSet>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  55. <ConfigurationType>Application</ConfigurationType>
  56. <UseDebugLibraries>false</UseDebugLibraries>
  57. <PlatformToolset>v143</PlatformToolset>
  58. <WholeProgramOptimization>true</WholeProgramOptimization>
  59. <CharacterSet>Unicode</CharacterSet>
  60. </PropertyGroup>
  61. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  62. <ImportGroup Label="ExtensionSettings">
  63. </ImportGroup>
  64. <ImportGroup Label="Shared">
  65. </ImportGroup>
  66. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  70. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  71. </ImportGroup>
  72. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  73. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  74. </ImportGroup>
  75. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  76. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  77. </ImportGroup>
  78. <PropertyGroup Label="UserMacros" />
  79. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  80. <ClCompile>
  81. <WarningLevel>Level3</WarningLevel>
  82. <SDLCheck>true</SDLCheck>
  83. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  84. <ConformanceMode>true</ConformanceMode>
  85. </ClCompile>
  86. <Link>
  87. <SubSystem>Console</SubSystem>
  88. <GenerateDebugInformation>true</GenerateDebugInformation>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  92. <ClCompile>
  93. <WarningLevel>Level3</WarningLevel>
  94. <FunctionLevelLinking>true</FunctionLevelLinking>
  95. <IntrinsicFunctions>true</IntrinsicFunctions>
  96. <SDLCheck>true</SDLCheck>
  97. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  98. <ConformanceMode>true</ConformanceMode>
  99. </ClCompile>
  100. <Link>
  101. <SubSystem>Console</SubSystem>
  102. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  103. <OptimizeReferences>true</OptimizeReferences>
  104. <GenerateDebugInformation>true</GenerateDebugInformation>
  105. </Link>
  106. </ItemDefinitionGroup>
  107. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  108. <ClCompile>
  109. <WarningLevel>Level3</WarningLevel>
  110. <SDLCheck>true</SDLCheck>
  111. <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  112. <ConformanceMode>true</ConformanceMode>
  113. </ClCompile>
  114. <Link>
  115. <SubSystem>Console</SubSystem>
  116. <GenerateDebugInformation>true</GenerateDebugInformation>
  117. </Link>
  118. </ItemDefinitionGroup>
  119. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  120. <ClCompile>
  121. <WarningLevel>Level3</WarningLevel>
  122. <FunctionLevelLinking>true</FunctionLevelLinking>
  123. <IntrinsicFunctions>true</IntrinsicFunctions>
  124. <SDLCheck>true</SDLCheck>
  125. <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  126. <ConformanceMode>true</ConformanceMode>
  127. </ClCompile>
  128. <Link>
  129. <SubSystem>Console</SubSystem>
  130. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  131. <OptimizeReferences>true</OptimizeReferences>
  132. <GenerateDebugInformation>true</GenerateDebugInformation>
  133. </Link>
  134. </ItemDefinitionGroup>
  135. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  136. <ImportGroup Label="ExtensionTargets">
  137. </ImportGroup>
  138. </Project>