libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 826b4a7a812fd98dfc3107f0a26a31031d8e0981
parent cd5a53a9c4a3a9c2c218a5d347aa1393f2924097
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Fri, 24 Dec 2021 21:25:10 +0300

MSVC: exclude unneeded file from builds

Diffstat:
Mw32/common/libmicrohttpd-files.vcxproj | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/w32/common/libmicrohttpd-files.vcxproj b/w32/common/libmicrohttpd-files.vcxproj @@ -21,7 +21,9 @@ <ClCompile Include="$(MhdSrc)microhttpd\mhd_send.c" /> <ClCompile Include="$(MhdSrc)microhttpd\mhd_sockets.c" /> <ClCompile Include="$(MhdSrc)microhttpd\mhd_itc.c" /> - <ClCompile Include="$(MhdSrc)microhttpd\mhd_compat.c" /> + <ClCompile Include="$(MhdSrc)microhttpd\mhd_compat.c"> + <ExcludedFromBuild Condition="'$(PlatformToolsetVersion)'&gt;='140'">true</ExcludedFromBuild> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="$(MhdSrc)include\autoinit_funcs.h" />