sscanf.vcxproj 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.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>{C26720F7-2E1A-4AE0-A611-0956EC9CEA8C}</ProjectGuid>
  15. <RootNamespace>HelloWorld</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  20. <ConfigurationType>DynamicLibrary</ConfigurationType>
  21. <CharacterSet>NotSet</CharacterSet>
  22. <WholeProgramOptimization>true</WholeProgramOptimization>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  25. <ConfigurationType>DynamicLibrary</ConfigurationType>
  26. <CharacterSet>NotSet</CharacterSet>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  29. <ImportGroup Label="ExtensionSettings">
  30. </ImportGroup>
  31. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  32. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  33. </ImportGroup>
  34. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  35. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  36. </ImportGroup>
  37. <PropertyGroup Label="UserMacros" />
  38. <PropertyGroup>
  39. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  40. <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
  41. <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
  42. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</LinkIncremental>
  43. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
  44. <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
  45. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
  46. </PropertyGroup>
  47. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  48. <ClCompile>
  49. <Optimization>Disabled</Optimization>
  50. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  51. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  52. <WholeProgramOptimization>true</WholeProgramOptimization>
  53. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;SSCANF_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  54. <StringPooling>true</StringPooling>
  55. <MinimalRebuild>true</MinimalRebuild>
  56. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  57. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  58. <PrecompiledHeader>
  59. </PrecompiledHeader>
  60. <WarningLevel>Level3</WarningLevel>
  61. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  62. <DisableSpecificWarnings>4995;%(DisableSpecificWarnings)</DisableSpecificWarnings>
  63. </ClCompile>
  64. <Link>
  65. <OutputFile>..\Plugins\$(ProjectName).dll</OutputFile>
  66. <ModuleDefinitionFile>sscanf.def</ModuleDefinitionFile>
  67. <GenerateDebugInformation>true</GenerateDebugInformation>
  68. <SubSystem>Windows</SubSystem>
  69. <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
  70. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  71. <DataExecutionPrevention>
  72. </DataExecutionPrevention>
  73. <TargetMachine>MachineX86</TargetMachine>
  74. </Link>
  75. </ItemDefinitionGroup>
  76. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  77. <ClCompile>
  78. <Optimization>MaxSpeed</Optimization>
  79. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  80. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  81. <WholeProgramOptimization>true</WholeProgramOptimization>
  82. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;SSCANF_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  83. <SmallerTypeCheck>false</SmallerTypeCheck>
  84. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  85. <FloatingPointModel>Strict</FloatingPointModel>
  86. <RuntimeTypeInfo>false</RuntimeTypeInfo>
  87. <PrecompiledHeader>
  88. </PrecompiledHeader>
  89. <WarningLevel>Level3</WarningLevel>
  90. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  91. <DisableSpecificWarnings>4995;%(DisableSpecificWarnings)</DisableSpecificWarnings>
  92. <BufferSecurityCheck>false</BufferSecurityCheck>
  93. </ClCompile>
  94. <Link>
  95. <OutputFile>..\Plugins\$(ProjectName).dll</OutputFile>
  96. <ModuleDefinitionFile>sscanf.def</ModuleDefinitionFile>
  97. <GenerateDebugInformation>true</GenerateDebugInformation>
  98. <SubSystem>Windows</SubSystem>
  99. <OptimizeReferences>true</OptimizeReferences>
  100. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  101. <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
  102. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  103. <DataExecutionPrevention>
  104. </DataExecutionPrevention>
  105. <TargetMachine>MachineX86</TargetMachine>
  106. <AdditionalDependencies>
  107. </AdditionalDependencies>
  108. <IgnoreSpecificDefaultLibraries>user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</IgnoreSpecificDefaultLibraries>
  109. </Link>
  110. </ItemDefinitionGroup>
  111. <ItemGroup>
  112. <ClInclude Include="SDK\amx\amx.h" />
  113. <ClInclude Include="SDK\amx\getch.h" />
  114. <ClInclude Include="SDK\plugin.h" />
  115. <ClInclude Include="SDK\plugincommon.h" />
  116. <ClInclude Include="SDK\amx\sclinux.h" />
  117. <ClInclude Include="array.h" />
  118. <ClInclude Include="data.h" />
  119. <ClInclude Include="enum.h" />
  120. <ClInclude Include="specifiers.h" />
  121. <ClInclude Include="sscanf.h" />
  122. <ClInclude Include="utils.h" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <ClCompile Include="kustom.cpp" />
  126. <ClCompile Include="SDK\amxplugin.cpp" />
  127. <ClCompile Include="SDK\amx\getch.c" />
  128. <ClCompile Include="array.cpp" />
  129. <ClCompile Include="data.cpp" />
  130. <ClCompile Include="enum.cpp" />
  131. <ClCompile Include="specifiers.cpp" />
  132. <ClCompile Include="sscanf.cpp" />
  133. <ClCompile Include="utils.cpp" />
  134. </ItemGroup>
  135. <ItemGroup>
  136. <None Include="YSF.def" />
  137. </ItemGroup>
  138. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  139. <ImportGroup Label="ExtensionTargets">
  140. </ImportGroup>
  141. </Project>