mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 03:25:13 +00:00
LibCore: Skip Command, UDPServer and TCPServer on Windows
This commit is contained in:
parent
1083046f65
commit
6ebba0d847
Notes:
github-actions[bot]
2025-02-11 08:42:49 +00:00
Author: https://github.com/ADKaster Commit: https://github.com/LadybirdBrowser/ladybird/commit/6ebba0d8471 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3534
1 changed files with 5 additions and 4 deletions
|
@ -29,7 +29,6 @@ if (LAGOM_TOOLS_ONLY)
|
|||
endif()
|
||||
|
||||
set(SOURCES
|
||||
Command.cpp
|
||||
ConfigFile.cpp
|
||||
DateTime.cpp
|
||||
ElapsedTimer.cpp
|
||||
|
@ -44,13 +43,12 @@ set(SOURCES
|
|||
ResourceImplementation.cpp
|
||||
ResourceImplementationFile.cpp
|
||||
SystemServerTakeover.cpp
|
||||
TCPServer.cpp
|
||||
ThreadEventQueue.cpp
|
||||
Timer.cpp
|
||||
UDPServer.cpp
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
# FIXME: Support UDPServer and TCPServer on Windows
|
||||
list(APPEND SOURCES
|
||||
ProcessWindows.cpp
|
||||
SocketWindows.cpp
|
||||
|
@ -58,10 +56,13 @@ if (WIN32)
|
|||
EventLoopImplementationWindows.cpp)
|
||||
else()
|
||||
list(APPEND SOURCES
|
||||
Command.cpp
|
||||
Process.cpp
|
||||
Socket.cpp
|
||||
AnonymousBuffer.cpp
|
||||
EventLoopImplementationUnix.cpp)
|
||||
EventLoopImplementationUnix.cpp
|
||||
UDPServer.cpp
|
||||
TCPServer.cpp)
|
||||
endif()
|
||||
|
||||
if (NOT WIN32 AND NOT EMSCRIPTEN)
|
||||
|
|
Loading…
Add table
Reference in a new issue