mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 17:33:12 +00:00
20 lines
384 B
CMake
20 lines
384 B
CMake
set(SOURCES
|
|
Connection.cpp
|
|
Decoder.cpp
|
|
Encoder.cpp
|
|
)
|
|
|
|
if (UNIX)
|
|
list(APPEND SOURCES
|
|
File.cpp
|
|
Message.cpp
|
|
TransportSocket.cpp)
|
|
else()
|
|
list(APPEND SOURCES
|
|
FileWindows.cpp
|
|
MessageWindows.cpp
|
|
TransportSocketWindows.cpp)
|
|
endif()
|
|
|
|
ladybird_lib(LibIPC ipc)
|
|
target_link_libraries(LibIPC PRIVATE LibCore LibURL LibThreading)
|