Sys.vcxproj 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. <PropertyGroup Label="Globals">
  22. <VCProjectVersion>16.0</VCProjectVersion>
  23. <Keyword>Win32Proj</Keyword>
  24. <ProjectGuid>{90d12360-23d3-4e90-a209-bc279ba34626}</ProjectGuid>
  25. <RootNamespace>Sys</RootNamespace>
  26. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  30. <ConfigurationType>DynamicLibrary</ConfigurationType>
  31. <UseDebugLibraries>true</UseDebugLibraries>
  32. <PlatformToolset>v142</PlatformToolset>
  33. <CharacterSet>Unicode</CharacterSet>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  36. <ConfigurationType>DynamicLibrary</ConfigurationType>
  37. <UseDebugLibraries>false</UseDebugLibraries>
  38. <PlatformToolset>v142</PlatformToolset>
  39. <WholeProgramOptimization>true</WholeProgramOptimization>
  40. <CharacterSet>Unicode</CharacterSet>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  43. <ConfigurationType>DynamicLibrary</ConfigurationType>
  44. <UseDebugLibraries>true</UseDebugLibraries>
  45. <PlatformToolset>v142</PlatformToolset>
  46. <CharacterSet>Unicode</CharacterSet>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  49. <ConfigurationType>DynamicLibrary</ConfigurationType>
  50. <UseDebugLibraries>false</UseDebugLibraries>
  51. <PlatformToolset>v142</PlatformToolset>
  52. <WholeProgramOptimization>true</WholeProgramOptimization>
  53. <CharacterSet>Unicode</CharacterSet>
  54. </PropertyGroup>
  55. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  56. <ImportGroup Label="ExtensionSettings">
  57. </ImportGroup>
  58. <ImportGroup Label="Shared">
  59. </ImportGroup>
  60. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  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|x64'">
  70. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  71. </ImportGroup>
  72. <PropertyGroup Label="UserMacros" />
  73. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  74. <LinkIncremental>true</LinkIncremental>
  75. </PropertyGroup>
  76. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  77. <LinkIncremental>false</LinkIncremental>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  80. <LinkIncremental>true</LinkIncremental>
  81. <OutDir>..\__bin\$(Platform)\$(Configuration)\</OutDir>
  82. <IntDir>..\__obj\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
  83. </PropertyGroup>
  84. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  85. <LinkIncremental>false</LinkIncremental>
  86. <OutDir>..\__bin\$(Platform)\$(Configuration)\</OutDir>
  87. <IntDir>..\__obj\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
  88. </PropertyGroup>
  89. <PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  90. <VcpkgUseStatic>true</VcpkgUseStatic>
  91. </PropertyGroup>
  92. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  93. <ClCompile>
  94. <WarningLevel>Level3</WarningLevel>
  95. <SDLCheck>true</SDLCheck>
  96. <PreprocessorDefinitions>WIN32;_DEBUG;SYS_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  97. <ConformanceMode>true</ConformanceMode>
  98. <PrecompiledHeader>Use</PrecompiledHeader>
  99. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  100. </ClCompile>
  101. <Link>
  102. <SubSystem>Windows</SubSystem>
  103. <GenerateDebugInformation>true</GenerateDebugInformation>
  104. <EnableUAC>false</EnableUAC>
  105. </Link>
  106. </ItemDefinitionGroup>
  107. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  108. <ClCompile>
  109. <WarningLevel>Level3</WarningLevel>
  110. <FunctionLevelLinking>true</FunctionLevelLinking>
  111. <IntrinsicFunctions>true</IntrinsicFunctions>
  112. <SDLCheck>true</SDLCheck>
  113. <PreprocessorDefinitions>WIN32;NDEBUG;SYS_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  114. <ConformanceMode>true</ConformanceMode>
  115. <PrecompiledHeader>Use</PrecompiledHeader>
  116. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  117. </ClCompile>
  118. <Link>
  119. <SubSystem>Windows</SubSystem>
  120. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  121. <OptimizeReferences>true</OptimizeReferences>
  122. <GenerateDebugInformation>true</GenerateDebugInformation>
  123. <EnableUAC>false</EnableUAC>
  124. </Link>
  125. </ItemDefinitionGroup>
  126. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  127. <ClCompile>
  128. <WarningLevel>Level3</WarningLevel>
  129. <SDLCheck>true</SDLCheck>
  130. <PreprocessorDefinitions>_DEBUG;SYS_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  131. <ConformanceMode>true</ConformanceMode>
  132. <PrecompiledHeader>Use</PrecompiledHeader>
  133. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  134. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  135. <LanguageStandard>stdcpp17</LanguageStandard>
  136. </ClCompile>
  137. <Link>
  138. <SubSystem>Windows</SubSystem>
  139. <GenerateDebugInformation>true</GenerateDebugInformation>
  140. <EnableUAC>false</EnableUAC>
  141. <ImportLibrary>..\__LIB\$(Platform)\$(Configuration)\$(TargetName).lib</ImportLibrary>
  142. <ModuleDefinitionFile>$(ProjectDir)\SysBaseModule.def</ModuleDefinitionFile>
  143. </Link>
  144. </ItemDefinitionGroup>
  145. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  146. <ClCompile>
  147. <WarningLevel>Level3</WarningLevel>
  148. <FunctionLevelLinking>true</FunctionLevelLinking>
  149. <IntrinsicFunctions>true</IntrinsicFunctions>
  150. <SDLCheck>true</SDLCheck>
  151. <PreprocessorDefinitions>NDEBUG;SYS_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  152. <ConformanceMode>true</ConformanceMode>
  153. <PrecompiledHeader>Use</PrecompiledHeader>
  154. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  155. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  156. <LanguageStandard>stdcpp17</LanguageStandard>
  157. </ClCompile>
  158. <Link>
  159. <SubSystem>Windows</SubSystem>
  160. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  161. <OptimizeReferences>true</OptimizeReferences>
  162. <GenerateDebugInformation>true</GenerateDebugInformation>
  163. <EnableUAC>false</EnableUAC>
  164. <ImportLibrary>..\__LIB\$(Platform)\$(Configuration)\$(TargetName).lib</ImportLibrary>
  165. <ModuleDefinitionFile>$(ProjectDir)\SysBaseModule.def</ModuleDefinitionFile>
  166. </Link>
  167. </ItemDefinitionGroup>
  168. <ItemGroup>
  169. <ClInclude Include="CBaseGloabl.h" />
  170. <ClInclude Include="framework.h" />
  171. <ClInclude Include="pch.h" />
  172. </ItemGroup>
  173. <ItemGroup>
  174. <ClCompile Include="CBaseGloabl.cpp" />
  175. <ClCompile Include="pch.cpp">
  176. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
  177. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  178. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  179. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
  180. </ClCompile>
  181. <ClCompile Include="SysBaseModule.cpp" />
  182. </ItemGroup>
  183. <ItemGroup>
  184. <None Include="SysBaseModule.def" />
  185. </ItemGroup>
  186. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  187. <ImportGroup Label="ExtensionTargets">
  188. </ImportGroup>
  189. </Project>