SSX3LobbyServer/lib/base/CMakeLists.txt

16 lines
255 B
CMake

add_library(base_base
assert.cpp
backoff.cpp
html_escape.cpp
)
lobbyserver_target(base_base)
target_link_libraries(base_base PUBLIC
# techinically not needed anymore but /shrug
base::impl
spdlog::spdlog
)
add_library(base::base ALIAS base_base)