This commit is contained in:
flower_linux
2026-06-11 19:00:49 +08:00
parent 710a8c2bd3
commit 0cf0713dc5
73 changed files with 2297 additions and 95 deletions

11
tools/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
add_executable(cmd_sender cmd_sender.cpp)
target_link_libraries(cmd_sender PRIVATE
softbus_core softbus_api softbus_transport softbus_registry asio
)
softbus_apply_platform_libs(cmd_sender)
add_executable(topic_watcher topic_watcher.cpp)
target_link_libraries(topic_watcher PRIVATE
softbus_bus softbus_core
)
softbus_apply_platform_libs(topic_watcher)