LibCore: Implement System::socketpair on Windows

This commit is contained in:
stasoid 2024-12-17 21:18:02 +05:00 committed by Andrew Kaster
commit 4ae3522b10
Notes: github-actions[bot] 2025-02-14 16:40:14 +00:00
6 changed files with 124 additions and 3 deletions

View file

@ -12,7 +12,9 @@ set(SOURCES
)
if (WIN32)
list(APPEND SOURCES SystemWindows.cpp)
list(APPEND SOURCES
SocketpairWindows.cpp
SystemWindows.cpp)
else()
list(APPEND SOURCES System.cpp)
endif()