Merge pull request #2631 from elyosh/networkfix

network: always link to ws2_32 on win32
This commit is contained in:
Miran Grča
2022-08-21 20:03:47 +02:00
committed by GitHub

View File

@@ -35,3 +35,7 @@ endif()
if (HAIKU)
target_link_libraries(86Box network)
endif()
if(WIN32)
target_link_libraries(86Box ws2_32)
endif()