forester-webots 0.1.0

Integration Forester and WeBots
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: build

.PHONY: build
build:
	cargo build
	mkdir -p sample_project/controllers/rust_controller/
	cp target/debug/webots-rs sample_project/controllers/rust_controller/rust_controller

	@echo
	@echo Done. Now you can run the simulation in Webots.

.PHONY: clean
clean:
	cargo clean
	rm -f src/bindings.rs
	rm -rf sample_project/controllers/rust_controller/