mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
804729fe37
The identifier "Protocol" is claimed by Objective-C and Swift for use by the language's built-in protocol conformance feature, which is similar to Rust traits or Java interfaces. Rename LibProtocol -> LibRequests, and its namespace from Protocol to Requests to accomodate this.
13 lines
303 B
CMake
13 lines
303 B
CMake
set(SOURCES
|
|
Request.cpp
|
|
RequestClient.cpp
|
|
WebSocket.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
../../Services/RequestServer/RequestClientEndpoint.h
|
|
../../Services/RequestServer/RequestServerEndpoint.h
|
|
)
|
|
|
|
serenity_lib(LibRequests requests)
|
|
target_link_libraries(LibRequests PRIVATE LibCore LibIPC)
|