9 lines
165 B
Batchfile
9 lines
165 B
Batchfile
|
|
@echo off
|
||
|
|
:: 编译 Rust 组件
|
||
|
|
cd rust_app
|
||
|
|
call cargo build --target xtensa-esp32s3-none-elf -Zbuild-std=core,alloc
|
||
|
|
cd ..
|
||
|
|
|
||
|
|
:: 编译整个项目
|
||
|
|
call idf.cmd build
|