webots 0.1.3

Webots bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: build

.PHONY: build
build:
	cargo build
	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 sample_project/controllers/rust_controller/rust_controller