ladybird/Libraries/LibRequests/CMakeLists.txt
Timothy Flynn 0de017df9b LibRequests: Move NetworkError stringification to LibRequests
Let's also rename the file to NetworkError.h while we're here. No need
to have "Enum" in the name.
2025-04-02 08:52:45 -04:00

14 lines
322 B
CMake

set(SOURCES
NetworkError.h
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)