hook.vcxproj 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.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>{4E160416-52D6-454E-943D-4DD7E1150D25}</ProjectGuid>
  15. <RootNamespace>hook</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
  18. </PropertyGroup>
  19. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  21. <ConfigurationType>DynamicLibrary</ConfigurationType>
  22. <PlatformToolset>v141</PlatformToolset>
  23. <CharacterSet>MultiByte</CharacterSet>
  24. <WholeProgramOptimization>true</WholeProgramOptimization>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  27. <ConfigurationType>DynamicLibrary</ConfigurationType>
  28. <PlatformToolset>v141</PlatformToolset>
  29. <CharacterSet>MultiByte</CharacterSet>
  30. <UseOfMfc>false</UseOfMfc>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  33. <ImportGroup Label="ExtensionSettings">
  34. </ImportGroup>
  35. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <PropertyGroup Label="UserMacros" />
  42. <PropertyGroup>
  43. <_ProjectFileVersion>15.0.28127.55</_ProjectFileVersion>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  46. <OutDir>..\..\..\..\bin\$(SolutionName)\</OutDir>
  47. <IntDir>$(OutDir)$(ProjectName)\$(Configuration)\</IntDir>
  48. <LinkIncremental>true</LinkIncremental>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  51. <OutDir>..\..\..\..\bin\$(SolutionName)\</OutDir>
  52. <IntDir>$(OutDir)$(ProjectName)\$(Configuration)\</IntDir>
  53. <LinkIncremental>false</LinkIncremental>
  54. </PropertyGroup>
  55. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  56. <ClCompile>
  57. <Optimization>Disabled</Optimization>
  58. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;HOOK_EXPORTS;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  59. <MinimalRebuild>true</MinimalRebuild>
  60. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  61. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  62. <PrecompiledHeader>Use</PrecompiledHeader>
  63. <WarningLevel>Level3</WarningLevel>
  64. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  65. <AdditionalIncludeDirectories>..\Include;</AdditionalIncludeDirectories>
  66. </ClCompile>
  67. <Link>
  68. <GenerateDebugInformation>true</GenerateDebugInformation>
  69. <SubSystem>Windows</SubSystem>
  70. <TargetMachine>MachineX86</TargetMachine>
  71. <AdditionalLibraryDirectories>..\lib;</AdditionalLibraryDirectories>
  72. <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
  73. </Link>
  74. </ItemDefinitionGroup>
  75. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  76. <ClCompile>
  77. <Optimization>MaxSpeed</Optimization>
  78. <IntrinsicFunctions>true</IntrinsicFunctions>
  79. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;HOOK_EXPORTS;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  80. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  81. <FunctionLevelLinking>true</FunctionLevelLinking>
  82. <PrecompiledHeader>Use</PrecompiledHeader>
  83. <WarningLevel>Level3</WarningLevel>
  84. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  85. <AdditionalIncludeDirectories>..\Include;</AdditionalIncludeDirectories>
  86. </ClCompile>
  87. <Link>
  88. <GenerateDebugInformation>true</GenerateDebugInformation>
  89. <SubSystem>Windows</SubSystem>
  90. <OptimizeReferences>true</OptimizeReferences>
  91. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  92. <TargetMachine>MachineX86</TargetMachine>
  93. <AdditionalLibraryDirectories>..\lib;</AdditionalLibraryDirectories>
  94. <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
  95. </Link>
  96. </ItemDefinitionGroup>
  97. <ItemGroup>
  98. <ClCompile Include="..\common\CharEncoding.cpp" />
  99. <ClCompile Include="..\common\CurlClient.cpp" />
  100. <ClCompile Include="dllmain.cpp">
  101. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  102. </PrecompiledHeader>
  103. <CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</CompileAsManaged>
  104. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  105. </PrecompiledHeader>
  106. <CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</CompileAsManaged>
  107. </ClCompile>
  108. <ClCompile Include="EncodingConversion.cpp" />
  109. <ClCompile Include="hook.cpp" />
  110. <ClCompile Include="stdafx.cpp">
  111. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  112. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  113. </ClCompile>
  114. <ClCompile Include="WxGlobal.cpp" />
  115. </ItemGroup>
  116. <ItemGroup>
  117. <ClInclude Include="..\common\CharEncoding.h" />
  118. <ClInclude Include="..\common\CurlClient.h" />
  119. <ClInclude Include="EncodingConversion.h" />
  120. <ClInclude Include="stdafx.h" />
  121. <ClInclude Include="targetver.h" />
  122. <ClInclude Include="WxGlobal.h" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <Text Include="ReadMe.txt" />
  126. </ItemGroup>
  127. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  128. <ImportGroup Label="ExtensionTargets">
  129. </ImportGroup>
  130. </Project>