|
|
@@ -0,0 +1,489 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
+ <ItemGroup Label="ProjectConfigurations">
|
|
|
+ <ProjectConfiguration Include="Debug-dll|Win32">
|
|
|
+ <Configuration>Debug-dll</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Debug-dll|x64">
|
|
|
+ <Configuration>Debug-dll</Configuration>
|
|
|
+ <Platform>x64</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Debug-static|Win32">
|
|
|
+ <Configuration>Debug-static</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Debug-static|x64">
|
|
|
+ <Configuration>Debug-static</Configuration>
|
|
|
+ <Platform>x64</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Release-dll|Win32">
|
|
|
+ <Configuration>Release-dll</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Release-dll|x64">
|
|
|
+ <Configuration>Release-dll</Configuration>
|
|
|
+ <Platform>x64</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Release-static|Win32">
|
|
|
+ <Configuration>Release-static</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Release-static|x64">
|
|
|
+ <Configuration>Release-static</Configuration>
|
|
|
+ <Platform>x64</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\base64.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\basicauth.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\connection.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\daemon.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\digestauth.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\internal.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\md5.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\memorypool.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\postprocessor.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\reason_phrase.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\response.c" />
|
|
|
+ <ClCompile Include="..\..\src\microhttpd\tsearch.c" />
|
|
|
+ <ClCompile Include="..\..\src\platform\w32functions.c" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <ClInclude Include="..\..\src\include\autoinit_funcs.h" />
|
|
|
+ <ClInclude Include="..\..\src\include\microhttpd.h" />
|
|
|
+ <ClInclude Include="..\..\src\include\platform.h" />
|
|
|
+ <ClInclude Include="..\..\src\include\platform_interface.h" />
|
|
|
+ <ClInclude Include="..\..\src\include\w32functions.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\base64.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\connection.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\internal.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\md5.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\memorypool.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\reason_phrase.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\response.h" />
|
|
|
+ <ClInclude Include="..\..\src\microhttpd\tsearch.h" />
|
|
|
+ <ClInclude Include="MHD_config.h" />
|
|
|
+ </ItemGroup>
|
|
|
+ <PropertyGroup Label="Globals">
|
|
|
+ <ProjectGuid>{9CFB0342-A9E7-483E-BEE5-A1DE22584C5A}</ProjectGuid>
|
|
|
+ <Keyword>Win32Proj</Keyword>
|
|
|
+ <RootNamespace>libmicrohttpd</RootNamespace>
|
|
|
+ </PropertyGroup>
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v120</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
+ <ImportGroup Label="ExtensionSettings">
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug-static|Win32'">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|Win32'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|x64'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|x64'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release-static|Win32'">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|Win32'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|x64'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|x64'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
+ <PropertyGroup Label="UserMacros" />
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|Win32'">
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <OutDir>$(SolutionDir)\Output\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
|
|
|
+ <TargetName>$(ProjectName)_d</TargetName>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|Win32'">
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <OutDir>$(SolutionDir)\Output\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
|
|
|
+ <TargetName>$(ProjectName)-dll_d</TargetName>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|x64'">
|
|
|
+ <TargetName>$(ProjectName)_d</TargetName>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)</IntDir>
|
|
|
+ <OutDir>$(SolutionDir)\Output\$(Platform)\</OutDir>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|x64'">
|
|
|
+ <TargetName>$(ProjectName)-dll_d</TargetName>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)</IntDir>
|
|
|
+ <OutDir>$(SolutionDir)\Output\$(Platform)\</OutDir>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|Win32'">
|
|
|
+ <OutDir>$(SolutionDir)\Output\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|Win32'">
|
|
|
+ <OutDir>$(SolutionDir)\Output\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
|
|
+ <TargetName>$(ProjectName)-dll</TargetName>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|x64'">
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ <OutDir>$(SolutionDir)\Output\$(Platform)\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)</IntDir>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|x64'">
|
|
|
+ <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath>
|
|
|
+ <CustomBuildAfterTargets>BuildLink</CustomBuildAfterTargets>
|
|
|
+ <OutDir>$(SolutionDir)\Output\$(Platform)\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)</IntDir>
|
|
|
+ <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
|
|
+ <TargetName>$(ProjectName)-dll</TargetName>
|
|
|
+ </PropertyGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;BUILDING_MHD_LIB;MHD_W32LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
+ <SmallerTypeCheck>true</SmallerTypeCheck>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_USRDLL;BUILDING_MHD_LIB;MHD_W32DLL;_CRT_SECURE_NO_WARNINGS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
|
+ <SmallerTypeCheck>true</SmallerTypeCheck>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;BUILDING_MHD_LIB;MHD_W32LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
+ <SmallerTypeCheck>true</SmallerTypeCheck>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-dll|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_USRDLL;BUILDING_MHD_LIB;MHD_W32DLL;_CRT_SECURE_NO_WARNINGS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
|
+ <SmallerTypeCheck>true</SmallerTypeCheck>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <Optimization>Full</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;_LIB;BUILDING_MHD_LIB;MHD_W32LIB;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
|
+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
|
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
+ <OmitFramePointers>true</OmitFramePointers>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Command>xcopy /F /I /Y $(IntermediateOutputPath)$(TargetName).pdb $(OutputPath)</Command>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Message>Copy .pdb to output directory</Message>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <Optimization>Full</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;_USRDLL;BUILDING_MHD_LIB;MHD_W32DLL;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
|
+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
|
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
+ <OmitFramePointers>true</OmitFramePointers>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Command>xcopy /F /I /Y $(IntermediateOutputPath)$(TargetName).pdb $(OutputPath)</Command>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Message>Copy .pdb to output directory</Message>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <Optimization>Full</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;_LIB;BUILDING_MHD_LIB;MHD_W32LIB;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
|
+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
|
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
+ <OmitFramePointers>true</OmitFramePointers>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Command>xcopy /F /I /Y $(IntermediateOutputPath)$(TargetName).pdb $(OutputPath)</Command>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Message>Copy .pdb to output directory</Message>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-dll|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
+ <Optimization>Full</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;_USRDLL;BUILDING_MHD_LIB;MHD_W32DLL;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
|
+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
|
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
+ <OmitFramePointers>true</OmitFramePointers>
|
|
|
+ <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
|
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
|
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
|
|
|
+ </Lib>
|
|
|
+ <Lib />
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Command>xcopy /F /I /Y $(IntermediateOutputPath)$(TargetName).pdb $(OutputPath)</Command>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <PostBuildEvent>
|
|
|
+ <Message>Copy .pdb to output directory</Message>
|
|
|
+ </PostBuildEvent>
|
|
|
+ <CustomBuildStep>
|
|
|
+ <Message>Copy headers to output</Message>
|
|
|
+ <Command>xcopy /F /I /Y $(SolutionDir)\..\..\src\include\microhttpd.h $(OutputPath)</Command>
|
|
|
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
|
|
|
+ <Inputs>$(SolutionDir)\..\..\src\include\microhttpd.h</Inputs>
|
|
|
+ </CustomBuildStep>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
+ <ImportGroup Label="ExtensionTargets">
|
|
|
+ </ImportGroup>
|
|
|
+</Project>
|