19 lines
288 B
CMake
19 lines
288 B
CMake
|
add_library(base_base
|
||
|
assert.cpp
|
||
|
backoff.cpp
|
||
|
html_escape.cpp
|
||
|
|
||
|
# logging library
|
||
|
logger.cpp
|
||
|
stdout_sink.cpp
|
||
|
)
|
||
|
|
||
|
lobbyserver_target(base_base)
|
||
|
|
||
|
target_link_libraries(base_base PUBLIC
|
||
|
# techinically not needed anymore but /shrug
|
||
|
base::impl
|
||
|
)
|
||
|
|
||
|
add_library(base::base ALIAS base_base)
|