unit_test.vcxproj 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.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. <ItemGroup>
  14. <ClInclude Include="..\..\include\civetweb.h" />
  15. <ClInclude Include="..\..\test\civetweb_check.h" />
  16. <ClInclude Include="..\..\test\private.h" />
  17. <ClInclude Include="..\..\test\private_exe.h" />
  18. <ClInclude Include="..\..\test\public_func.h" />
  19. <ClInclude Include="..\..\test\public_server.h" />
  20. <ClInclude Include="..\..\test\shared.h" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ClCompile Include="..\..\src\civetweb.c" />
  24. <ClCompile Include="..\..\test\private.c" />
  25. <ClCompile Include="..\..\test\private_exe.c" />
  26. <ClCompile Include="..\..\test\public_func.c" />
  27. <ClCompile Include="..\..\test\public_server.c" />
  28. <ClCompile Include="..\..\test\shared.c" />
  29. </ItemGroup>
  30. <PropertyGroup Label="Globals">
  31. <ProjectGuid>{1AC4A7A6-0100-4287-97F4-B95807BE5607}</ProjectGuid>
  32. <Keyword>Win32Proj</Keyword>
  33. <RootNamespace>unit_test</RootNamespace>
  34. </PropertyGroup>
  35. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  37. <ConfigurationType>Application</ConfigurationType>
  38. <UseDebugLibraries>true</UseDebugLibraries>
  39. <CharacterSet>MultiByte</CharacterSet>
  40. <PlatformToolset>v140</PlatformToolset>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  43. <ConfigurationType>Application</ConfigurationType>
  44. <UseDebugLibraries>false</UseDebugLibraries>
  45. <WholeProgramOptimization>true</WholeProgramOptimization>
  46. <CharacterSet>MultiByte</CharacterSet>
  47. <PlatformToolset>v140</PlatformToolset>
  48. </PropertyGroup>
  49. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  50. <ImportGroup Label="ExtensionSettings">
  51. </ImportGroup>
  52. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  53. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  54. </ImportGroup>
  55. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  56. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  57. </ImportGroup>
  58. <PropertyGroup Label="UserMacros" />
  59. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  60. <LinkIncremental>true</LinkIncremental>
  61. <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir>
  62. </PropertyGroup>
  63. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64. <LinkIncremental>false</LinkIncremental>
  65. <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir>
  66. </PropertyGroup>
  67. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  68. <ClCompile>
  69. <PrecompiledHeader>
  70. </PrecompiledHeader>
  71. <WarningLevel>Level3</WarningLevel>
  72. <Optimization>Disabled</Optimization>
  73. <PreprocessorDefinitions>LOCAL_TEST;REPLACE_CHECK_FOR_LOCAL_DEBUGGING;USE_IPV6;USE_WEBSOCKET;MEMORY_DEBUGGING;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  74. <AdditionalIncludeDirectories>$(ProjectDir)..\..\src;$(ProjectDir)..\..\include;$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  75. </ClCompile>
  76. <Link>
  77. <SubSystem>Console</SubSystem>
  78. <GenerateDebugInformation>true</GenerateDebugInformation>
  79. </Link>
  80. </ItemDefinitionGroup>
  81. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  82. <ClCompile>
  83. <WarningLevel>Level3</WarningLevel>
  84. <PrecompiledHeader>
  85. </PrecompiledHeader>
  86. <Optimization>MaxSpeed</Optimization>
  87. <FunctionLevelLinking>true</FunctionLevelLinking>
  88. <IntrinsicFunctions>true</IntrinsicFunctions>
  89. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  90. <AdditionalIncludeDirectories>$(ProjectDir)..\..\src;$(ProjectDir)..\..\include;$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  91. </ClCompile>
  92. <Link>
  93. <SubSystem>Console</SubSystem>
  94. <GenerateDebugInformation>true</GenerateDebugInformation>
  95. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  96. <OptimizeReferences>true</OptimizeReferences>
  97. </Link>
  98. </ItemDefinitionGroup>
  99. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  100. <ImportGroup Label="ExtensionTargets">
  101. </ImportGroup>
  102. </Project>