mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
5c457ff486
* use std::source_location instead of godawful macros in logging * remove unused/absolutely haram af json logstream * fix bug in android logger where it doesn't respect eLogNone
22 lines
576 B
CMake
22 lines
576 B
CMake
pybind11_add_module(pyllarp MODULE
|
|
module.cpp
|
|
llarp/context.cpp
|
|
llarp/router.cpp
|
|
llarp/router_id.cpp
|
|
llarp/router_contact.cpp
|
|
llarp/crypto/types.cpp
|
|
llarp/config.cpp
|
|
llarp/logger.cpp
|
|
llarp/peerstats.cpp
|
|
llarp/dht/dht_types.cpp
|
|
llarp/path/path_types.cpp
|
|
llarp/path/path_hop_config.cpp
|
|
llarp/handlers/pyhandler.cpp
|
|
llarp/tooling/router_hive.cpp
|
|
llarp/tooling/router_event.cpp
|
|
llarp/service/address.cpp
|
|
)
|
|
target_link_libraries(pyllarp PUBLIC liblokinet)
|
|
target_include_directories(pyllarp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
add_log_tag(pyllarp)
|