- #!/bin/bash
- # 配送机器人
- go build -o ./deploy/exe/pjibot_delivery_master.exe ./aarch64/pjibot_delivery/master/main.go
- go build -o ./deploy/exe/pjibot_delivery_control.exe ./aarch64/pjibot_delivery/control/main.go
- # 引导机器人
- go build -o ./deploy/exe/pjibot_guide_master.exe ./aarch64/pjibot_guide/master/main.go
- go build -o ./deploy/exe/pjibot_guide_control.exe ./aarch64/pjibot_guide/control/main.go
- # 巡检机器人
- go build -o ./deploy/exe/pjibot_patrol_master.exe ./aarch64/pjibot_patrol/master/main.go
- go build -o ./deploy/exe/pjibot_patrol_control.exe ./aarch64/pjibot_patrol/control/main.go
|