mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
20 lines
671 B
CMake
20 lines
671 B
CMake
set(SOURCES
|
|
CacheSizes.cpp
|
|
NetworkError.h
|
|
Request.cpp
|
|
RequestClient.cpp
|
|
RequestTimingInfo.cpp
|
|
WebSocket.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
../../Services/RequestServer/RequestClientEndpoint.h
|
|
../../Services/RequestServer/RequestServerEndpoint.h
|
|
)
|
|
|
|
compile_ipc(${LADYBIRD_SOURCE_DIR}/Services/RequestServer/RequestClient.ipc ${CMAKE_BINARY_DIR}/Services/RequestServer/RequestClientEndpoint.h)
|
|
compile_ipc(${LADYBIRD_SOURCE_DIR}/Services/RequestServer/RequestServer.ipc ${CMAKE_BINARY_DIR}/Services/RequestServer/RequestServerEndpoint.h)
|
|
|
|
ladybird_lib(LibRequests requests)
|
|
target_link_libraries(LibRequests PRIVATE LibCore LibHTTP LibIPC LibURL)
|