2026-04-09 08:55:43 +08:00
|
|
|
|
# rust_app 组件的 CMake 配置
|
|
|
|
|
|
# 注意:rust_app_wrapper.c 已经在 main 组件中编译
|
|
|
|
|
|
# 这里只提供 Rust 静态库的链接
|
2026-03-31 11:04:43 +08:00
|
|
|
|
|
|
|
|
|
|
idf_component_register(
|
|
|
|
|
|
INCLUDE_DIRS "."
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2026-04-09 08:55:43 +08:00
|
|
|
|
# 链接 Rust 静态库
|
|
|
|
|
|
set(RUST_LIB_PATH "${COMPONENT_DIR}/target/xtensa-esp32s3-none-elf/release-debug/librust_app.a")
|
|
|
|
|
|
message(STATUS "Rust library path: ${RUST_LIB_PATH}")
|
|
|
|
|
|
|
|
|
|
|
|
add_prebuilt_library(rust_app_lib "${RUST_LIB_PATH}")
|
|
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE rust_app_lib)
|