2024-02-05 06:24:48 -05:00
|
|
|
# third party requirements
|
|
|
|
add_subdirectory(third_party/r3)
|
|
|
|
|
|
|
|
add_library(base_http
|
|
|
|
server.cpp
|
|
|
|
|
|
|
|
proxy_address.cpp
|
|
|
|
|
|
|
|
# WebSocket stuff
|
|
|
|
websocket_client.cpp
|
|
|
|
websocket_message.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
lobbyserver_target(base_http)
|
|
|
|
|
|
|
|
target_link_libraries(base_http PUBLIC
|
2024-03-10 06:34:42 -04:00
|
|
|
spdlog::spdlog
|
2024-02-05 06:24:48 -05:00
|
|
|
base::impl
|
|
|
|
Boost::url
|
|
|
|
|
|
|
|
# We use the R3 router library
|
|
|
|
# TODO: Actually stop exposing this as it's only a implementation detail..
|
|
|
|
r3
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(base::http ALIAS base_http)
|