# softbus_tool **Repository Path**: wang-baoguang/softbus_tool ## Basic Information - **Project Name**: softbus_tool - **Description**: 软总线测试工具 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-02-26 - **Last Updated**: 2025-02-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 集成 在`//foundation/communication/dsoftbus/tools`目录下clone此仓 ## 编译 在 `//foundation/communication/dsoftbus/core/BUILD.gn`中添加 ``` import("../dsoftbus.gni") if (defined(ohos_lite)) { lite_component("softbus_server") { if (ohos_kernel_type == "liteos_m") { features = [ "frame:softbus_server_frame", "common:softbus_utils", "$dsoftbus_root_path/adapter:softbus_adapter", ] } else { features = [ "frame:softbus_server" ] } } } else { group("softbus_server") { deps = [ "frame:softbus_server", "//foundation/communication/dsoftbus/tools/softbus_tool:softbus_tool", ] } } ``` 然后编译软总线 ``` ./build.sh --product-name rk3568 --ccache --build-target dsoftbus ```