mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
695784b2b6
DHT PubIntroSentEvent some helper functions added to RouterHive (C++ class) as well as RouterHive(Python class) hive.py main() continues to be a testbed for new event types some more internal classes in pybind
21 lines
638 B
CMake
21 lines
638 B
CMake
set(LLARP_PYBIND_SRC
|
|
module.cpp
|
|
llarp/context.cpp
|
|
llarp/router_id.cpp
|
|
llarp/router_contact.cpp
|
|
llarp/crypto/types.cpp
|
|
llarp/config.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
|
|
)
|
|
|
|
pybind11_add_module(pyllarp MODULE ${LLARP_PYBIND_SRC})
|
|
target_include_directories(pyllarp PRIVATE ${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/crypto/libntrup/include ${CMAKE_SOURCE_DIR}/llarp ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(pyllarp PUBLIC ${EXE_LIBS})
|
|
|