Skip to content
Snippets Groups Projects
Commit 0d1db3c4 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Just have all xpdev apps link with winsock import library

Gave up on trying to isolate socket-enabled (networked) and non-socket apps. Just link everything that uses xpdev (which is everything, I think) with the WinSock import library. Fixes the current master branch build issue on Windows. I'll get around to removing the old NO_SOCKET_SUPPORT macro eventually.
parent c6f277ab
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<AdditionalDependencies>netapi32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>netapi32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment