[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r36719 - in libmicrohttpd: . w32/VS2013 w32/common
From: |
gnunet |
Subject: |
[GNUnet-SVN] r36719 - in libmicrohttpd: . w32/VS2013 w32/common |
Date: |
Thu, 3 Dec 2015 12:53:03 +0100 |
Author: Karlson2k
Date: 2015-12-03 12:53:03 +0100 (Thu, 03 Dec 2015)
New Revision: 36719
Added:
libmicrohttpd/w32/common/MHD_config.h
libmicrohttpd/w32/common/common-build-settings.vcxproj
libmicrohttpd/w32/common/hellobrowser-build-settings.vcxproj
libmicrohttpd/w32/common/hellobrowser-files.vcxproj
libmicrohttpd/w32/common/hellobrowser-filters.vcxproj
libmicrohttpd/w32/common/libmicrohttpd-build-settings.vcxproj
libmicrohttpd/w32/common/libmicrohttpd-filters.vcxproj
Removed:
libmicrohttpd/w32/VS2013/MHD_config.h
Modified:
libmicrohttpd/Makefile.am
libmicrohttpd/w32/VS2013/hellobrowser.vcxproj
libmicrohttpd/w32/VS2013/hellobrowser.vcxproj.filters
libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj
libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj.filters
libmicrohttpd/w32/common/libmicrohttpd-files.vcxproj
Log:
VS projects: restructured VS project files to share common values
Modified: libmicrohttpd/Makefile.am
===================================================================
--- libmicrohttpd/Makefile.am 2015-12-03 11:52:59 UTC (rev 36718)
+++ libmicrohttpd/Makefile.am 2015-12-03 11:53:03 UTC (rev 36719)
@@ -1,11 +1,15 @@
# This Makefile.am is in the public domain
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = contrib src m4 .
+W32COMMON = w32/common/gen_dll_res.ps1 w32/common/microhttpd_dll_res_vc.rc.in
w32/common/microhttpd_dll_res_vc.rc \
+ w32/common/MHD_config.h w32/common/vs_dirs.props
w32/common/common-build-settings.vcxproj \
+ w32/common/libmicrohttpd-build-settings.vcxproj
w32/common/libmicrohttpd-files.vcxproj w32/common/libmicrohttpd-filters.vcxproj
\
+ w32/common/hellobrowser-build-settings.vcxproj
w32/common/hellobrowser-files.vcxproj w32/common/hellobrowser-filters.vcxproj
+W32VS2013 = w32/VS2013/libmicrohttpd.vcxproj
w32/VS2013/libmicrohttpd.vcxproj.filters \
+ w32/VS2013/hellobrowser.vcxproj w32/VS2013/hellobrowser.vcxproj.filters \
+ w32/VS2013/libmicrohttpd.sln
EXTRA_DIST = acinclude.m4 libmicrohttpd.pc.in \
- w32/VS2013/libmicrohttpd.sln w32/VS2013/libmicrohttpd.vcxproj
w32/VS2013/libmicrohttpd.vcxproj.filters \
- w32/VS2013/hellobrowser.vcxproj w32/VS2013/hellobrowser.vcxproj.filters
w32/VS2013/MHD_config.h \
- w32/common/vs_dirs.props \
- w32/common/gen_dll_res.ps1 w32/common/microhttpd_dll_res_vc.rc.in
w32/common/microhttpd_dll_res_vc.rc
+ $(W32COMMON) $(W32VS2013)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libmicrohttpd.pc
Deleted: libmicrohttpd/w32/VS2013/MHD_config.h
===================================================================
--- libmicrohttpd/w32/VS2013/MHD_config.h 2015-12-03 11:52:59 UTC (rev
36718)
+++ libmicrohttpd/w32/VS2013/MHD_config.h 2015-12-03 11:53:03 UTC (rev
36719)
@@ -1,129 +0,0 @@
-/* MHD_config.h for W32 */
-/* Created manually. */
-
-/* *** Basic OS/compiler information *** */
-
-/* This is a Windows system */
-#define WINDOWS 1
-
-/* Define if MS VC compiler is used */
-#define MSVC 1
-
-/* *** MHD configuration *** */
-/* Undef to disable feature */
-
-/* Enable basic Auth support */
-#define BAUTH_SUPPORT 1
-
-/* Enable digest Auth support */
-#define DAUTH_SUPPORT 1
-
-/* Enable postprocessor.c */
-#define HAVE_POSTPROCESSOR 1
-
-/* Enable error messages */
-#define HAVE_MESSAGES 1
-
-/* Disable HTTPS support */
-#define HTTPS_SUPPORT 0
-
-
-/* *** OS features *** */
-
-/* Provides IPv6 headers */
-#define HAVE_INET6 1
-
-/* Define to use pair of sockets instead of pipes for signaling */
-#define MHD_DONT_USE_PIPES 1
-
-/* define to use W32 threads */
-#define MHD_USE_W32_THREADS 1
-
-#ifndef _WIN32_WINNT
-/* MHD supports Windows XP and later W32 systems*/
-#define _WIN32_WINNT 0x0501
-#endif /* _WIN32_WINNT */
-
-/* winsock poll is available only on Vista and later */
-#if _WIN32_WINNT >= 0x0600
-#define HAVE_POLL 1
-#endif /* _WIN32_WINNT >= 0x0600 */
-
-/* define to 0 to disable epoll support */
-#define EPOLL_SUPPORT 0
-
-/* Define to 1 if you have the <winsock2.h> header file. */
-#define HAVE_WINSOCK2_H 1
-
-/* Define to 1 if you have the <ws2tcpip.h> header file. */
-#define HAVE_WS2TCPIP_H 1
-
-/* Define to 1 if you have the declaration of `SOCK_NONBLOCK', and to 0 if you
- don't. */
-#define HAVE_DECL_SOCK_NONBLOCK 0
-
-/* Define to 1 if you have the `_lseeki64' function. */
-#define HAVE___LSEEKI64 1
-
-
-/* *** Headers information *** */
-/* Not really important as not used by code currently */
-
-/* Define to 1 if you have the <errno.h> header file. */
-#define HAVE_ERRNO_H 1
-
-/* Define to 1 if you have the <fcntl.h> header file. */
-#define HAVE_FCNTL_H 1
-
-/* Define to 1 if you have the <inttypes.h> header file. */
-#define HAVE_INTTYPES_H 1
-
-/* Define to 1 if you have the <limits.h> header file. */
-#define HAVE_LIMITS_H 1
-
-/* Define to 1 if you have the <locale.h> header file. */
-#define HAVE_LOCALE_H 1
-
-/* Define to 1 if you have the <math.h> header file. */
-#define HAVE_MATH_H 1
-
-/* Define to 1 if you have the <memory.h> header file. */
-#define HAVE_MEMORY_H 1
-
-/* Define to 1 if you have the <pthread.h> header file. */
-#define HAVE_PTHREAD_H 0
-
-/* Define to 1 if you have the <stdint.h> header file. */
-#define HAVE_STDINT_H 1
-
-/* Define to 1 if you have the <stdio.h> header file. */
-#define HAVE_STDIO_H 1
-
-/* Define to 1 if you have the <stdlib.h> header file. */
-#define HAVE_STDLIB_H 1
-
-/* Define to 1 if you have the <strings.h> header file. */
-#define HAVE_STRINGS_H 1
-
-/* Define to 1 if you have the <string.h> header file. */
-#define HAVE_STRING_H 1
-
-/* Define to 1 if you have the <sys/stat.h> header file. */
-#define HAVE_SYS_STAT_H 1
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#define HAVE_SYS_TYPES_H 1
-
-/* Define to 1 if you have the <time.h> header file. */
-#define HAVE_TIME_H 1
-
-
-/* *** Other useful staff *** */
-
-#define _GNU_SOURCE 1
-
-/* Define to 1 if you have the ANSI C header files. */
-#define STDC_HEADERS 1
-
-
-/* End of MHD_config.h */
Modified: libmicrohttpd/w32/VS2013/hellobrowser.vcxproj
===================================================================
--- libmicrohttpd/w32/VS2013/hellobrowser.vcxproj 2015-12-03 11:52:59 UTC
(rev 36718)
+++ libmicrohttpd/w32/VS2013/hellobrowser.vcxproj 2015-12-03 11:53:03 UTC
(rev 36719)
@@ -35,14 +35,7 @@
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
- <ItemGroup>
- <ClCompile Include="$(MhdRoot)doc\examples\hellobrowser.c" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="libmicrohttpd.vcxproj">
- <Project>{9cfb0342-a9e7-483e-bee5-a1de22584c5a}</Project>
- </ProjectReference>
- </ItemGroup>
+ <Import Project="$(MhdW32Common)\hellobrowser-files.vcxproj" />
<PropertyGroup Label="Globals">
<ProjectGuid>{310F39BD-A2D6-44FF-8344-37ADD0524CBD}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
@@ -84,90 +77,14 @@
<ImportGroup 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>
- <IncludePath>$(MhdSrc)include;$(SolutionDir);$(IncludePath)</IncludePath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)'=='Win32'">
- <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
- <OutDir>$(SolutionDir)Output\</OutDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)'=='x64'">
- <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)\</IntDir>
- <OutDir>$(SolutionDir)Output\$(Platform)\</OutDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(UseDebugLibraries)'=='true'">
- <LinkIncremental>true</LinkIncremental>
- </PropertyGroup>
- <PropertyGroup Condition="'$(UseDebugLibraries)'!='true'">
- <LinkIncremental>false</LinkIncremental>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Debug-static'">
- <TargetName>$(ProjectName)_d</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'">
- <TargetName>$(ProjectName)-dll_d</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Release-static'">
- <TargetName>$(ProjectName)</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Release-dll'">
- <TargetName>$(ProjectName)-dll</TargetName>
- </PropertyGroup>
+ <Import Project="$(MhdW32Common)common-build-settings.vcxproj" />
+ <Import Project="$(MhdW32Common)hellobrowser-build-settings.vcxproj" />
+ <PropertyGroup />
<ItemDefinitionGroup>
- <ClCompile>
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
-
<PreprocessorDefinitions>WIN32;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- </Link>
+ <ClCompile />
+ <Link />
<ProjectReference />
</ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'=='true'">
- <ClCompile>
- <Optimization>Disabled</Optimization>
-
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <ProjectReference />
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'!='true'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- <ProjectReference />
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug-static'">
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- </ClCompile>
- <ProjectReference />
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug-dll'">
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- </ClCompile>
- <ProjectReference />
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)'=='Release-static'">
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)'=='Release-dll'">
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
Modified: libmicrohttpd/w32/VS2013/hellobrowser.vcxproj.filters
===================================================================
--- libmicrohttpd/w32/VS2013/hellobrowser.vcxproj.filters 2015-12-03
11:52:59 UTC (rev 36718)
+++ libmicrohttpd/w32/VS2013/hellobrowser.vcxproj.filters 2015-12-03
11:53:03 UTC (rev 36719)
@@ -1,22 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup>
- <Filter Include="Source Files">
-
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
- <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
- </Filter>
- <Filter Include="Header Files">
-
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
- <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
- </Filter>
- <Filter Include="Resource Files">
-
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
-
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
- </Filter>
- </ItemGroup>
- <ItemGroup>
- <ClCompile Include="$(MhdRoot)doc\examples\hellobrowser.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- </ItemGroup>
+ <Import Project="$(SolutionDir)..\common\vs_dirs.props" />
+ <Import Project="$(MhdW32Common)hellobrowser-filters.vcxproj" />
</Project>
\ No newline at end of file
Modified: libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj
===================================================================
--- libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj 2015-12-03 11:52:59 UTC
(rev 36718)
+++ libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj 2015-12-03 11:53:03 UTC
(rev 36719)
@@ -135,151 +135,14 @@
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label="LocalAppDataPlatform" />
</ImportGroup>
- <PropertyGroup Label="UserMacros">
- <!-- WinXP = 0; Vista = 1; Win7 = 2; Win8 = 3...
- Only 0 and 1 are used currently -->
- <TargetOSLevel Condition="'$(PlatformToolset)'=='v120_xp' Or
'$(PlatformToolset)'=='v140_xp'">0</TargetOSLevel>
- <TargetOSLevel Condition="'$(PlatformToolset)'!='v120_xp' And
'$(PlatformToolset)'!='v140_xp'">1</TargetOSLevel>
- </PropertyGroup>
- <PropertyGroup>
- <IncludePath>$(MhdSrc)include;$(SolutionDir);$(IncludePath)</IncludePath>
- <CustomBuildBeforeTargets>ResourceCompile</CustomBuildBeforeTargets>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)'=='Win32'">
- <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
- <OutDir>$(SolutionDir)Output\</OutDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)'=='x64'">
- <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)\</IntDir>
- <OutDir>$(SolutionDir)Output\$(Platform)\</OutDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
- <TargetName
Condition="'$(UseDebugLibraries)'=='true'">$(ProjectName)_d</TargetName>
- <TargetName
Condition="'$(UseDebugLibraries)'!='true'">$(ProjectName)</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
- <TargetName
Condition="'$(UseDebugLibraries)'=='true'">$(ProjectName)-dll_d</TargetName>
- <TargetName
Condition="'$(UseDebugLibraries)'!='true'">$(ProjectName)-dll</TargetName>
- </PropertyGroup>
+ <Import Project="$(MhdW32Common)common-build-settings.vcxproj" />
+ <Import Project="$(MhdW32Common)libmicrohttpd-build-settings.vcxproj" />
+ <PropertyGroup />
<ItemDefinitionGroup>
- <ClCompile>
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <Optimization>Disabled</Optimization>
-
<PreprocessorDefinitions>WIN32;BUILDING_MHD_LIB;_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <DisableSpecificWarnings>4996</DisableSpecificWarnings>
- <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
-
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
- </ClCompile>
- <Link>
- <Subsystem>WINDOWS</Subsystem>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- </Link>
- <CustomBuildStep>
- <Message>Copy headers to output</Message>
- <Command>xcopy /F /I /Y "$(MhdSrc)include\microhttpd.h"
"$(OutputPath)"</Command>
- <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
- <Inputs>$(MhdSrc)include\microhttpd.h</Inputs>
- </CustomBuildStep>
+ <ClCompile />
+ <Link />
+ <Lib />
</ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(TargetOSLevel)'>'0'">
- <ClCompile>
-
<PreprocessorDefinitions>_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <MinimumRequiredVersion>6.00</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,6.00
%(AdditionalOptions)</AdditionalOptions>
- </Link>
- <Lib>
- <MinimumRequiredVersion>6.00</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,6.00
%(AdditionalOptions)</AdditionalOptions>
- </Lib>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And
'$(Platform)'=='Win32'">
- <ClCompile>
-
<PreprocessorDefinitions>_WIN32_WINNT=0x0501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <MinimumRequiredVersion>5.01</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,5.01
%(AdditionalOptions)</AdditionalOptions>
- </Link>
- <Lib>
- <MinimumRequiredVersion>5.01</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,5.01
%(AdditionalOptions)</AdditionalOptions>
- </Lib>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And
'$(Platform)'=='x64'">
- <ClCompile>
-
<PreprocessorDefinitions>_WIN32_WINNT=0x0502;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <MinimumRequiredVersion>5.02</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,5.02
%(AdditionalOptions)</AdditionalOptions>
- </Link>
- <Lib>
- <MinimumRequiredVersion>5.02</MinimumRequiredVersion>
- <AdditionalOptions>/SUBSYSTEM:WINDOWS,5.02
%(AdditionalOptions)</AdditionalOptions>
- </Lib>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
- <ClCompile>
-
<PreprocessorDefinitions>_LIB;MHD_W32LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Lib>
- <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
- </Lib>
- <PostBuildEvent>
- <Command>xcopy /F /I /Y "$(IntermediateOutputPath)$(TargetName).pdb"
"$(OutputPath)"</Command>
- <Message>Copy .pdb to output directory</Message>
- </PostBuildEvent>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
- <ClCompile>
-
<PreprocessorDefinitions>_USRDLL;MHD_W32DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
-
<AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'=='true'">
- <ClCompile>
- <Optimization>Disabled</Optimization>
- <SmallerTypeCheck>true</SmallerTypeCheck>
- </ClCompile>
- <ResourceCompile>
-
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ResourceCompile>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'!='true'">
- <ClCompile>
- <Optimization>Full</Optimization>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
- <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <OmitFramePointers>true</OmitFramePointers>
- </ClCompile>
- <Link>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- <ResourceCompile>
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ResourceCompile>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
- <ClCompile>
- <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebug</RuntimeLibrary>
- <RuntimeLibrary
Condition="'$(UseDebugLibraries)'!='true'">MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
- <ClCompile>
- <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebugDLL</RuntimeLibrary>
- <RuntimeLibrary
Condition="'$(UseDebugLibraries)'!='true'">MultiThreadedDLL</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
Modified: libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj.filters
===================================================================
--- libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj.filters 2015-12-03
11:52:59 UTC (rev 36718)
+++ libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj.filters 2015-12-03
11:53:03 UTC (rev 36719)
@@ -1,129 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup>
- <Filter Include="Source Files">
-
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
- <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
- </Filter>
- <Filter Include="Header Files">
-
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
- <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
- </Filter>
- <Filter Include="Resource Files">
-
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
-
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
- </Filter>
- <Filter Include="Source Files\platform_interface">
-
<UniqueIdentifier>{af799bf7-9787-4134-8e56-9e5aae50c7e3}</UniqueIdentifier>
- <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
- </Filter>
- <Filter Include="Template Files">
-
<UniqueIdentifier>{df5ad836-e372-437b-a0e3-299d3675d6b4}</UniqueIdentifier>
- <Extensions>in</Extensions>
- </Filter>
- </ItemGroup>
- <ItemGroup>
- <ClCompile Include="$(MhdSrc)microhttpd\base64.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\basicauth.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\connection.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\daemon.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\digestauth.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\internal.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\md5.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\memorypool.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\postprocessor.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\reason_phrase.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\response.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)platform\w32functions.c">
- <Filter>Source Files\platform_interface</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\tsearch.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="$(MhdSrc)microhttpd\mhd_mono_clock.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="$(MhdSrc)microhttpd\base64.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\connection.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\internal.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\md5.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\memorypool.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\response.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)include\microhttpd.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)include\platform.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)include\platform_interface.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)include\w32functions.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="MHD_config.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\tsearch.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)include\autoinit_funcs.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\mhd_limits.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\mhd_byteorder.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- <ClInclude Include="$(MhdSrc)microhttpd\mhd_mono_clock.h">
- <Filter>Source Files</Filter>
- </ClInclude>
- </ItemGroup>
- <ItemGroup>
- <ResourceCompile Include="$(MhdW32Common)microhttpd_dll_res_vc.rc">
- <Filter>Resource Files</Filter>
- </ResourceCompile>
- </ItemGroup>
- <ItemGroup>
- <CustomBuild Include="$(MhdW32Common)microhttpd_dll_res_vc.rc.in">
- <Filter>Template Files</Filter>
- </CustomBuild>
- </ItemGroup>
+ <Import Project="$(SolutionDir)..\common\vs_dirs.props" />
+ <Import Project="$(MhdW32Common)libmicrohttpd-filters.vcxproj" />
</Project>
\ No newline at end of file
Copied: libmicrohttpd/w32/common/MHD_config.h (from rev 36718,
libmicrohttpd/w32/VS2013/MHD_config.h)
===================================================================
--- libmicrohttpd/w32/common/MHD_config.h (rev 0)
+++ libmicrohttpd/w32/common/MHD_config.h 2015-12-03 11:53:03 UTC (rev
36719)
@@ -0,0 +1,129 @@
+/* MHD_config.h for W32 */
+/* Created manually. */
+
+/* *** Basic OS/compiler information *** */
+
+/* This is a Windows system */
+#define WINDOWS 1
+
+/* Define if MS VC compiler is used */
+#define MSVC 1
+
+/* *** MHD configuration *** */
+/* Undef to disable feature */
+
+/* Enable basic Auth support */
+#define BAUTH_SUPPORT 1
+
+/* Enable digest Auth support */
+#define DAUTH_SUPPORT 1
+
+/* Enable postprocessor.c */
+#define HAVE_POSTPROCESSOR 1
+
+/* Enable error messages */
+#define HAVE_MESSAGES 1
+
+/* Disable HTTPS support */
+#define HTTPS_SUPPORT 0
+
+
+/* *** OS features *** */
+
+/* Provides IPv6 headers */
+#define HAVE_INET6 1
+
+/* Define to use pair of sockets instead of pipes for signaling */
+#define MHD_DONT_USE_PIPES 1
+
+/* define to use W32 threads */
+#define MHD_USE_W32_THREADS 1
+
+#ifndef _WIN32_WINNT
+/* MHD supports Windows XP and later W32 systems*/
+#define _WIN32_WINNT 0x0501
+#endif /* _WIN32_WINNT */
+
+/* winsock poll is available only on Vista and later */
+#if _WIN32_WINNT >= 0x0600
+#define HAVE_POLL 1
+#endif /* _WIN32_WINNT >= 0x0600 */
+
+/* define to 0 to disable epoll support */
+#define EPOLL_SUPPORT 0
+
+/* Define to 1 if you have the <winsock2.h> header file. */
+#define HAVE_WINSOCK2_H 1
+
+/* Define to 1 if you have the <ws2tcpip.h> header file. */
+#define HAVE_WS2TCPIP_H 1
+
+/* Define to 1 if you have the declaration of `SOCK_NONBLOCK', and to 0 if you
+ don't. */
+#define HAVE_DECL_SOCK_NONBLOCK 0
+
+/* Define to 1 if you have the `_lseeki64' function. */
+#define HAVE___LSEEKI64 1
+
+
+/* *** Headers information *** */
+/* Not really important as not used by code currently */
+
+/* Define to 1 if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
+/* Define to 1 if you have the <fcntl.h> header file. */
+#define HAVE_FCNTL_H 1
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the <limits.h> header file. */
+#define HAVE_LIMITS_H 1
+
+/* Define to 1 if you have the <locale.h> header file. */
+#define HAVE_LOCALE_H 1
+
+/* Define to 1 if you have the <math.h> header file. */
+#define HAVE_MATH_H 1
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the <pthread.h> header file. */
+#define HAVE_PTHREAD_H 0
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the <stdio.h> header file. */
+#define HAVE_STDIO_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the <time.h> header file. */
+#define HAVE_TIME_H 1
+
+
+/* *** Other useful staff *** */
+
+#define _GNU_SOURCE 1
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+
+/* End of MHD_config.h */
Added: libmicrohttpd/w32/common/common-build-settings.vcxproj
===================================================================
--- libmicrohttpd/w32/common/common-build-settings.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/common-build-settings.vcxproj 2015-12-03
11:53:03 UTC (rev 36719)
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup Label="UserMacros">
+ <!-- WinXP = 0; Vista = 1; Win7 = 2; Win8 = 3...
+ Only 0 and 1 are used currently -->
+ <TargetOSLevel Condition="'$(PlatformToolset)'=='v120_xp' Or
'$(PlatformToolset)'=='v140_xp'">0</TargetOSLevel>
+ <TargetOSLevel Condition="'$(PlatformToolset)'!='v120_xp' And
'$(PlatformToolset)'!='v140_xp'">1</TargetOSLevel>
+ </PropertyGroup>
+ <PropertyGroup>
+
<IncludePath>$(SolutionDir);$(MhdW32Common);$(MhdSrc)include;$(IncludePath)</IncludePath>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Platform)'=='Win32'">
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
+ <OutDir>$(SolutionDir)Output\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Platform)'=='x64'">
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)\</IntDir>
+ <OutDir>$(SolutionDir)Output\$(Platform)\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(UseDebugLibraries)'=='true'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(UseDebugLibraries)'!='true'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
+ <WarningLevel>Level3</WarningLevel>
+
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
+ <TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
+
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
+ <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(TargetOSLevel)'>'0'">
+ <ClCompile>
+
<PreprocessorDefinitions>_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Link>
+ <MinimumRequiredVersion>6.00</MinimumRequiredVersion>
+ </Link>
+ <Lib>
+ <MinimumRequiredVersion>6.00</MinimumRequiredVersion>
+ </Lib>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And
'$(Platform)'=='Win32'">
+ <ClCompile>
+
<PreprocessorDefinitions>_WIN32_WINNT=0x0501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Link>
+ <MinimumRequiredVersion>5.01</MinimumRequiredVersion>
+ </Link>
+ <Lib>
+ <MinimumRequiredVersion>5.01</MinimumRequiredVersion>
+ </Lib>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And
'$(Platform)'=='x64'">
+ <ClCompile>
+
<PreprocessorDefinitions>_WIN32_WINNT=0x0502;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Link>
+ <MinimumRequiredVersion>5.02</MinimumRequiredVersion>
+ </Link>
+ <Lib>
+ <MinimumRequiredVersion>5.02</MinimumRequiredVersion>
+ </Lib>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'=='true'">
+ <ClCompile>
+ <Optimization>Disabled</Optimization>
+ <SmallerTypeCheck>true</SmallerTypeCheck>
+ </ClCompile>
+ <ResourceCompile>
+
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ResourceCompile>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'!='true'">
+ <ClCompile>
+ <Optimization>Full</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
+ <OmitFramePointers>true</OmitFramePointers>
+ </ClCompile>
+ <Link>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ </Link>
+ <ResourceCompile>
+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ResourceCompile>
+ </ItemDefinitionGroup>
+</Project>
Added: libmicrohttpd/w32/common/hellobrowser-build-settings.vcxproj
===================================================================
--- libmicrohttpd/w32/common/hellobrowser-build-settings.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/hellobrowser-build-settings.vcxproj
2015-12-03 11:53:03 UTC (rev 36719)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup Condition="'$(Configuration)'=='Debug-static'">
+ <TargetName>$(ProjectName)_d</TargetName>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'">
+ <TargetName>$(ProjectName)-dll_d</TargetName>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)'=='Release-static'">
+ <TargetName>$(ProjectName)</TargetName>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)'=='Release-dll'">
+ <TargetName>$(ProjectName)-dll</TargetName>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ </Link>
+ <ProjectReference />
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <RuntimeLibrary
Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary>
+ </ClCompile>
+ </ItemDefinitionGroup>
+</Project>
Added: libmicrohttpd/w32/common/hellobrowser-files.vcxproj
===================================================================
--- libmicrohttpd/w32/common/hellobrowser-files.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/hellobrowser-files.vcxproj 2015-12-03 11:53:03 UTC
(rev 36719)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <ClCompile Include="$(MhdRoot)doc\examples\hellobrowser.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="libmicrohttpd.vcxproj">
+ <Project>{9cfb0342-a9e7-483e-bee5-a1de22584c5a}</Project>
+ </ProjectReference>
+ </ItemGroup>
+</Project>
Copied: libmicrohttpd/w32/common/hellobrowser-filters.vcxproj (from rev 36718,
libmicrohttpd/w32/VS2013/hellobrowser.vcxproj.filters)
===================================================================
--- libmicrohttpd/w32/common/hellobrowser-filters.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/hellobrowser-filters.vcxproj 2015-12-03
11:53:03 UTC (rev 36719)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="$(MhdRoot)doc\examples\hellobrowser.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
Added: libmicrohttpd/w32/common/libmicrohttpd-build-settings.vcxproj
===================================================================
--- libmicrohttpd/w32/common/libmicrohttpd-build-settings.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/libmicrohttpd-build-settings.vcxproj
2015-12-03 11:53:03 UTC (rev 36719)
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <CustomBuildBeforeTargets>ResourceCompile</CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
+ <TargetName
Condition="'$(UseDebugLibraries)'=='true'">$(ProjectName)_d</TargetName>
+ <TargetName
Condition="'$(UseDebugLibraries)'!='true'">$(ProjectName)</TargetName>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
+ <TargetName
Condition="'$(UseDebugLibraries)'=='true'">$(ProjectName)-dll_d</TargetName>
+ <TargetName
Condition="'$(UseDebugLibraries)'!='true'">$(ProjectName)-dll</TargetName>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<PreprocessorDefinitions>BUILDING_MHD_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Link>
+ <Subsystem>WINDOWS</Subsystem>
+ </Link>
+ <Lib>
+ <SubSystem>Windows</SubSystem>
+ </Lib>
+ <CustomBuildStep>
+ <Message>Copy headers to output</Message>
+ <Command>xcopy /F /I /Y "$(MhdSrc)include\microhttpd.h"
"$(OutputPath)"</Command>
+ <Outputs>$(OutputPath)microhttpd.h;%(Outputs)</Outputs>
+ <Inputs>$(MhdSrc)include\microhttpd.h</Inputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
+ <ClCompile>
+
<PreprocessorDefinitions>_LIB;MHD_W32LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebug</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'!='true'">MultiThreaded</RuntimeLibrary>
+ </ClCompile>
+ <Lib>
+ <AdditionalDependencies>Ws2_32.lib</AdditionalDependencies>
+ </Lib>
+ <PostBuildEvent>
+ <Command>xcopy /F /I /Y "$(IntermediateOutputPath)$(TargetName).pdb"
"$(OutputPath)"</Command>
+ <Message>Copy .pdb to output directory</Message>
+ </PostBuildEvent>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
+ <ClCompile>
+
<PreprocessorDefinitions>_USRDLL;MHD_W32DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebugDLL</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'!='true'">MultiThreadedDLL</RuntimeLibrary>
+ </ClCompile>
+ <Link>
+
<AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ </Link>
+ </ItemDefinitionGroup>
+</Project>
Modified: libmicrohttpd/w32/common/libmicrohttpd-files.vcxproj
===================================================================
--- libmicrohttpd/w32/common/libmicrohttpd-files.vcxproj 2015-12-03
11:52:59 UTC (rev 36718)
+++ libmicrohttpd/w32/common/libmicrohttpd-files.vcxproj 2015-12-03
11:53:03 UTC (rev 36719)
@@ -32,7 +32,7 @@
<ClInclude Include="$(MhdSrc)microhttpd\mhd_mono_clock.h" />
<ClInclude Include="$(MhdSrc)microhttpd\response.h" />
<ClInclude Include="$(MhdSrc)microhttpd\tsearch.h" />
- <ClInclude Include="MHD_config.h" />
+ <ClInclude Include="$(MhdW32Common)MHD_config.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="$(MhdW32Common)microhttpd_dll_res_vc.rc">
Copied: libmicrohttpd/w32/common/libmicrohttpd-filters.vcxproj (from rev 36718,
libmicrohttpd/w32/VS2013/libmicrohttpd.vcxproj.filters)
===================================================================
--- libmicrohttpd/w32/common/libmicrohttpd-filters.vcxproj
(rev 0)
+++ libmicrohttpd/w32/common/libmicrohttpd-filters.vcxproj 2015-12-03
11:53:03 UTC (rev 36719)
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ <Filter Include="Source Files\platform_interface">
+
<UniqueIdentifier>{af799bf7-9787-4134-8e56-9e5aae50c7e3}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Template Files">
+
<UniqueIdentifier>{df5ad836-e372-437b-a0e3-299d3675d6b4}</UniqueIdentifier>
+ <Extensions>in</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="$(MhdSrc)microhttpd\base64.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\basicauth.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\connection.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\daemon.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\digestauth.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\internal.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\md5.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\memorypool.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\postprocessor.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\reason_phrase.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\response.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)platform\w32functions.c">
+ <Filter>Source Files\platform_interface</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\tsearch.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="$(MhdSrc)microhttpd\mhd_mono_clock.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="$(MhdSrc)microhttpd\base64.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\connection.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\internal.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\md5.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\memorypool.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\response.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)include\microhttpd.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)include\platform.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)include\platform_interface.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)include\w32functions.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdW32Common)MHD_config.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\tsearch.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)include\autoinit_funcs.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\mhd_limits.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\mhd_byteorder.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="$(MhdSrc)microhttpd\mhd_mono_clock.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="$(MhdW32Common)microhttpd_dll_res_vc.rc">
+ <Filter>Resource Files</Filter>
+ </ResourceCompile>
+ </ItemGroup>
+ <ItemGroup>
+ <CustomBuild Include="$(MhdW32Common)microhttpd_dll_res_vc.rc.in">
+ <Filter>Template Files</Filter>
+ </CustomBuild>
+ </ItemGroup>
+</Project>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r36719 - in libmicrohttpd: . w32/VS2013 w32/common,
gnunet <=