1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

network: unbreak build with Clang 9 (#10014)

ld: error: libopenrct2.a(Network.cpp.o): unable to find library from dependent library specifier: Ws2_32.lib
This commit is contained in:
Jan Beich
2019-09-23 15:14:57 +00:00
committed by Michael Steenbeek
parent 2e9cf80be9
commit a5555649ec

View File

@@ -91,7 +91,9 @@ static constexpr uint32_t CHUNK_SIZE = 1024 * 63;
# include <string>
# include <vector>
# pragma comment(lib, "Ws2_32.lib")
# if defined(_WIN32)
# pragma comment(lib, "Ws2_32.lib")
# endif
using namespace OpenRCT2;